diff --git a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts index cb85474d1f915..8a3e380addad2 100644 --- a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts +++ b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts @@ -328,6 +328,7 @@ export const gettingstarted: NavMenuConstant = { url: '/guides/getting-started', items: [ { name: 'Features', url: '/guides/getting-started/features' }, + { name: 'API Keys', url: '/guides/getting-started/api-keys' }, { name: 'Architecture', url: '/guides/getting-started/architecture' }, { name: 'Framework Quickstarts', @@ -1492,9 +1493,7 @@ export const api: NavMenuConstant = { name: 'Security', url: '/guides/api', items: [ - { name: 'How API Keys work', url: '/guides/api/api-keys' }, { name: 'Securing your API', url: '/guides/api/securing-your-api' }, - { name: 'Data API', url: '/guides/database/data-api' }, { name: 'Custom Claims & RBAC', url: '/guides/api/custom-claims-and-role-based-access-control-rbac', @@ -2485,7 +2484,7 @@ export const security: NavMenuConstant = { url: '/guides/deployment/shared-responsibility-model' as `/${string}`, }, { name: 'Row Level Security', url: '/guides/database/postgres/row-level-security' }, - { name: 'Data API', url: '/guides/database/data-api' }, + { name: 'Securing your API', url: '/guides/api/securing-your-api' }, ], }, ], diff --git a/apps/docs/content/_partials/api_settings.mdx b/apps/docs/content/_partials/api_settings.mdx index b7c94bfc4505e..dca5688a908af 100644 --- a/apps/docs/content/_partials/api_settings.mdx +++ b/apps/docs/content/_partials/api_settings.mdx @@ -4,7 +4,7 @@ Now that you've created some database tables, you are ready to insert data using To do this, you need to get the Project URL and key from [the project **Connect** dialog](/dashboard/project/\_?showConnect=true&connectTab={{ .tab }}&framework={{ .framework }}). -[Read the API keys docs](/docs/guides/api/api-keys) for a full explanation of all key types and their uses. +[Read the API keys docs](/docs/guides/getting-started/api-keys) for a full explanation of all key types and their uses. diff --git a/apps/docs/content/_partials/api_settings_steps.mdx b/apps/docs/content/_partials/api_settings_steps.mdx index 8708951aef712..84228d1cbd95c 100644 --- a/apps/docs/content/_partials/api_settings_steps.mdx +++ b/apps/docs/content/_partials/api_settings_steps.mdx @@ -8,7 +8,7 @@ Now that you've created some database tables, you are ready to insert data using To do this, you need to get the Project URL and key from [the project **Connect** dialog](/dashboard/project/\_?showConnect=true&connectTab={{ .tab }}&framework={{ .framework }}). -[Read the API keys docs](/docs/guides/api/api-keys) for a full explanation of all key types and their uses. +[Read the API keys docs](/docs/guides/getting-started/api-keys) for a full explanation of all key types and their uses. diff --git a/apps/docs/content/_partials/metrics_access.mdx b/apps/docs/content/_partials/metrics_access.mdx index ac5c505a03e77..853dcaac14a8d 100644 --- a/apps/docs/content/_partials/metrics_access.mdx +++ b/apps/docs/content/_partials/metrics_access.mdx @@ -23,7 +23,7 @@ className="rounded-lg border border-foreground/10 bg-surface-100 text-foreground 3. Authenticate with HTTP Basic Auth: - **Username**: `service_role` - - **Password**: a **Secret API key** (`sb_secret_...`). You can create/copy it in [**Project Settings → API Keys**](/dashboard/project/_/settings/api-keys). For more context, see [Understanding API keys](/docs/guides/api/api-keys). + - **Password**: a **Secret API key** (`sb_secret_...`). You can create/copy it in [**Project Settings → API Keys**](/dashboard/project/_/settings/api-keys). For more context, see [Understanding API keys](/docs/guides/getting-started/api-keys). Testing locally is as simple as running `curl` with your Secret API key: diff --git a/apps/docs/content/guides/ai/semantic-search.mdx b/apps/docs/content/guides/ai/semantic-search.mdx index 3d6188ad603cc..76f77ac358222 100644 --- a/apps/docs/content/guides/ai/semantic-search.mdx +++ b/apps/docs/content/guides/ai/semantic-search.mdx @@ -150,6 +150,56 @@ from match_documents( In this scenario, you'll likely use a Postgres client library to establish a direct connection from your application to the database. It's best practice to parameterize your arguments before executing the query. +### Filtering vector search by metadata + +In real applications you usually want to combine the similarity search with a filter on another column, for example only matching documents in a given category, owned by a specific user, or carrying matching metadata in a `jsonb` column. The recommended pattern is to push the filter into the SQL function so the planner can combine it with the vector predicate. Chaining `.eq()` after `rpc()` is applied by PostgREST as an outer filter on the function's result, _after_ the function has already executed its similarity ranking and `limit` — so the vector planner can't use it, and selective filters can leave you with fewer than `match_count` rows. + +Assuming you've added a `category text` column to `documents`, you can extend the cosine variant of `match_documents` with a typed filter parameter: + +```sql +-- Match documents in a given category using cosine distance (<=>) +create or replace function match_documents ( + query_embedding extensions.vector(512), + match_threshold float, + match_count int, + filter_category text +) +returns setof documents +language sql +as $$ + select * + from documents + where documents.category = filter_category + and documents.embedding <=> query_embedding < 1 - match_threshold + order by documents.embedding <=> query_embedding asc + limit least(match_count, 200); +$$; +``` + +If you store side data in a `jsonb metadata` column instead of dedicated columns, the same pattern works with the `@>` containment operator: + +```sql +where documents.metadata @> filter_metadata + and documents.embedding <=> query_embedding < 1 - match_threshold +``` + +Call the filtered function from your application by passing the extra parameter: + +```tsx +const { data: documents } = await supabase.rpc('match_documents', { + query_embedding: embedding, + match_threshold: 0.78, + match_count: 10, + filter_category: 'blog', +}) +``` + + + +When the filter is selective enough that the post-filter result set falls below `match_count`, an HNSW index can return fewer rows than expected. From `pgvector` 0.8.0, the planner supports iterative index scans that re-enter the index to gather more candidates. See [Filtering with HNSW indexes](/docs/guides/ai/vector-indexes/hnsw-indexes#filtering-with-hnsw-indexes) for details. + + + ## Next steps As your database scales, you will need an index on your vector columns to maintain fast query speeds. See [Vector indexes](/docs/guides/ai/vector-indexes) for an in-depth guide on the different types of indexes and how they work. diff --git a/apps/docs/content/guides/ai/vector-columns.mdx b/apps/docs/content/guides/ai/vector-columns.mdx index 340b09656e717..6ca1aa5495524 100644 --- a/apps/docs/content/guides/ai/vector-columns.mdx +++ b/apps/docs/content/guides/ai/vector-columns.mdx @@ -157,6 +157,12 @@ In this example `embedding` would be another embedding you wish to compare again +To filter your vector search by another column from the JS client, extend the function above with an extra parameter and `where` clause. See [Filtering vector search by metadata](/docs/guides/ai/semantic-search#filtering-vector-search-by-metadata) for a worked example. + + + + + Be sure to use embeddings produced from the same embedding model when calculating distance. Comparing embeddings from two different models will produce no meaningful result. diff --git a/apps/docs/content/guides/ai/vector-indexes/hnsw-indexes.mdx b/apps/docs/content/guides/ai/vector-indexes/hnsw-indexes.mdx index 906e2b9c9a2eb..6390b7260bba1 100644 --- a/apps/docs/content/guides/ai/vector-indexes/hnsw-indexes.mdx +++ b/apps/docs/content/guides/ai/vector-indexes/hnsw-indexes.mdx @@ -114,6 +114,19 @@ HNSW should be your default choice when creating a vector index. Add the index w Unlike IVFFlat indexes, you are safe to build an HNSW index immediately after the table is created. HNSW indexes are based on graphs which inherently are not affected by the same limitations as IVFFlat. As new data is added to the table, the index will be filled automatically and the index structure will remain optimal. +## Filtering with HNSW indexes + +Adding a `where` clause to a vector query does not bypass the HNSW index. The Postgres planner picks between using the index and a sequential scan based on the selectivity of the filter and the size of the table. When the index is used, the filter is applied as the index returns candidates. + +The trade-off shows up when the filter is selective: an HNSW scan returns the top `k` rows by distance, and if most of those are filtered out you can end up with fewer rows than your `LIMIT`. From `pgvector` 0.8.0, the planner supports **iterative index scans** that automatically scan more of the index until enough results are found, controlled by the `hnsw.iterative_scan` GUC. The default is `off`. The two enabled modes are: + +- `strict_order` preserves exact distance ordering across iterations. +- `relaxed_order` allows slight reordering across iterations for better recall. + +`hnsw.max_scan_tuples` (default 20,000) and `hnsw.scan_mem_multiplier` (default 1) bound how far the iterative scan goes. See the [pgvector iterative scans documentation](https://github.com/pgvector/pgvector#iterative-index-scans) for the full reference. + +For an end-to-end JavaScript example of filtering a vector search by another column, see [Filtering vector search by metadata](/docs/guides/ai/semantic-search#filtering-vector-search-by-metadata). + ## Resources Read more about indexing on `pgvector`'s [GitHub page](https://github.com/pgvector/pgvector#indexing). diff --git a/apps/docs/content/guides/api.mdx b/apps/docs/content/guides/api.mdx index 047499c70abd0..9d0a4df90e777 100644 --- a/apps/docs/content/guides/api.mdx +++ b/apps/docs/content/guides/api.mdx @@ -12,18 +12,25 @@ The API is auto-generated from your database and is designed to get you building You can use them directly from the browser (two-tier architecture), or as a complement to your own API server (three-tier architecture). + + +- You can find the API URL in the [**Integrations > Data API**](/dashboard/project/_/integrations/data_api/overview) section of the Dashboard. +- You can find the API Keys in the [**Settings > API Keys**](/dashboard/project/_/settings/api-keys/) section of the Dashboard. + + + ## Features [#rest-api-overview] -Supabase provides a RESTful API using [PostgREST](https://postgrest.org/). This is a very thin API layer on top of Postgres. +Supabase provides a RESTful API using [PostgREST](https://postgrest.org/), a thin API layer on top of Postgres. It exposes everything you need from a CRUD API at the URL `https://.supabase.co/rest/v1/`. The REST interface is automatically reflected from your database's schema and is: -- **Instant and auto-generated.**
As you update your database the changes are immediately accessible through your API. -- **Self documenting.**
Supabase generates documentation in the Dashboard which updates as you make database changes. -- **Secure.**
The API is configured to work with Postgres's Row Level Security, provisioned behind an API gateway with key-auth enabled. -- **Fast.**
Our benchmarks for basic reads are more than 300% faster than Firebase. The API is a very thin layer on top of Postgres, which does most of the heavy lifting. -- **Scalable.**
The API can serve thousands of simultaneous requests, and works well for Serverless workloads. +- **Instant and auto-generated:** As you update your database the changes are immediately accessible through your API. +- **Self documenting:** Supabase generates documentation in the Dashboard which updates as you make database changes. +- **Secure:** The API is configured to work with Postgres's Row Level Security, provisioned behind an API gateway with key-auth enabled. +- **Fast:** Our benchmarks for basic reads are more than 300% faster than Firebase. The API is a very thin layer on top of Postgres, which does most of the heavy lifting. +- **Scalable:** The API can serve thousands of simultaneous requests, and works well for Serverless workloads. The reflected API is designed to retain as much of Postgres' capability as possible including: @@ -35,12 +42,3 @@ The reflected API is designed to retain as much of Postgres' capability as possi - The Postgres security model - including Row Level Security, Roles, and Grants. The REST API resolves all requests to a single SQL statement leading to fast response times and high throughput. - -Reference: - -- [Docs](https://postgrest.org/) -- [Source Code](https://github.com/PostgREST/postgrest) - -## API URL and keys - -You can find the API URL and Keys in the [Dashboard](/dashboard/project/_/settings/api-keys). diff --git a/apps/docs/content/guides/api/creating-routes.mdx b/apps/docs/content/guides/api/creating-routes.mdx index 1df5e1de41566..7b065aabe7a34 100644 --- a/apps/docs/content/guides/api/creating-routes.mdx +++ b/apps/docs/content/guides/api/creating-routes.mdx @@ -77,7 +77,7 @@ In most cases, you can get the correct key from [the Project's **Connect** dialo
-[Read the API keys docs](/docs/guides/api/api-keys) for a full explanation of all key types and their uses. +[Read the API keys docs](/docs/guides/getting-started/api-keys) for a full explanation of all key types and their uses. The REST API is accessible through the URL `https://.supabase.co/rest/v1` diff --git a/apps/docs/content/guides/api/quickstart.mdx b/apps/docs/content/guides/api/quickstart.mdx index 511222e3a9805..018001142be64 100644 --- a/apps/docs/content/guides/api/quickstart.mdx +++ b/apps/docs/content/guides/api/quickstart.mdx @@ -1,22 +1,20 @@ --- title: 'Build an API route in less than 2 minutes.' -subtitle: 'Create your first API route by creating a table called `todos` to store tasks.' +subtitle: 'Create your first API route by creating a public `leaderboard` table.' breadcrumb: 'API Quickstart' hideToc: true --- -Let's create our first REST route which we can query using `cURL` or the browser. - -We'll create a database table called `todos` for storing tasks. This creates a corresponding API route `/rest/v1/todos` which can accept `GET`, `POST`, `PATCH`, & `DELETE` requests. +This guide covers creating a REST route you can query using `cURL` or the browser by creating a database table called `leaderboard` to hold player scores. This creates a corresponding API route `/rest/v1/leaderboard` which can accept `GET`, `POST`, `PATCH`, and `DELETE` requests. - + - [Create a new project](/dashboard) in the Supabase Dashboard. + [Create a new project](/dashboard/_) in the Supabase Dashboard. - After your project is ready, create a table in your Supabase database. You can do this with either the Table interface or the [SQL Editor](/dashboard/project/_/sql). +After your project is ready, create a table in your Supabase database. You can do this with either the [Table Editor](/dashboard/project/_/editor) or the [SQL Editor](/dashboard/project/_/sql). @@ -32,11 +30,13 @@ We'll create a database table called `todos` for storing tasks. This creates a c ```sql - -- Create a table called "todos" - -- with a column to store tasks. - create table todos ( + -- Create a "leaderboard" table to store + -- player names and their scores. + create table leaderboard ( id serial primary key, - task text + player text not null, + score integer not null default 0, + created_at timestamptz default now() ); ``` @@ -44,10 +44,9 @@ We'll create a database table called `todos` for storing tasks. This creates a c 1. Go to the [**Table editor**](/dashboard/project/_/editor) section in the Dashboard. - 2. Click **New Table** and create a table with the name `todos`. - 3. Click **Save**. - 4. Click **New Column** and create a column with the name `task` and type `text`. - 5. Click **Save**. + 2. Click **New Table** and create a table with the name `leaderboard`. + 3. Add a `player` column of type `text` and a `score` column of type `int4`. + 4. Click **Save**. @@ -59,9 +58,9 @@ We'll create a database table called `todos` for storing tasks. This creates a c - Expose the `todos` table through the Data API so it can be queried over HTTP. + Expose the `leaderboard` table through the Data API so it can be queried over HTTP. A leaderboard is meant to be public, so anonymous clients only need read access. - For more control over which tables and functions are exposed, see [Expose specific tables and functions](/docs/guides/database/data-api#expose-specific-tables-and-functions-recommended). + For more control over which tables and functions are exposed, read the [Grant access explicitly guide](/docs/guides/api/securing-your-api#grant-access-explicitly). @@ -78,13 +77,13 @@ We'll create a database table called `todos` for storing tasks. This creates a c ```sql -- Allow read-only access for anonymous clients - grant select on public.todos to anon; + grant select on public.leaderboard to anon; ``` - Go to [**Integrations > Data API > Settings**](/dashboard/project/_/integrations/data_api/settings). Under **Exposed schemas**, make sure `public` is included, then under **Exposed tables**, toggle on access for the `todos` table. + In the [**Integrations > Data API > Settings**](/dashboard/project/_/integrations/data_api/settings) section of the Dashboard. Under **Exposed schemas**, make sure `public` is included, then under **Exposed tables**, toggle on access for the `leaderboard` table. @@ -97,7 +96,7 @@ We'll create a database table called `todos` for storing tasks. This creates a c - Turn on Row Level Security for this table and create the policies that control who can read and write rows. + Enable Row Level Security (RLS) for this table and create the policies that control who can read and write rows. For a leaderboard, anyone should be able to read scores. Only authenticated users should be able to submit or update them. @@ -105,20 +104,26 @@ We'll create a database table called `todos` for storing tasks. This creates a c ```sql -- Turn on RLS - alter table "todos" + alter table "leaderboard" enable row level security; - -- Allow anonymous access - create policy "Allow public access" - on todos + -- Anyone can read the leaderboard + create policy "Leaderboard is public" + on leaderboard for select - to anon + to anon, authenticated using (true); - -- Allow authenticated users to read and modify todos - create policy "Allow authenticated users to manage todos" - on todos - for all + -- Authenticated users can submit and update scores + create policy "Authenticated users can submit scores" + on leaderboard + for insert + to authenticated + with check (true); + + create policy "Authenticated users can update scores" + on leaderboard + for update to authenticated using (true) with check (true); @@ -131,7 +136,7 @@ We'll create a database table called `todos` for storing tasks. This creates a c - Now that RLS is in place, grant write access to the `authenticated` and `service_role` roles. + With RLS setup, grant write access to the `authenticated` and `service_role` roles. @@ -139,8 +144,8 @@ We'll create a database table called `todos` for storing tasks. This creates a c ```sql -- Grant write access only after RLS and policies are in place - grant select, insert, update, delete on public.todos to authenticated; - grant select, insert, update, delete on public.todos to service_role; + grant select, insert, update, delete on public.leaderboard to authenticated; + grant select, insert, update, delete on public.leaderboard to service_role; ``` @@ -150,19 +155,19 @@ We'll create a database table called `todos` for storing tasks. This creates a c - Now we can add some data to our table which we can access through our API. + Now add some scores to the table so the API has something to query. ```sql - insert into todos (task) + insert into leaderboard (player, score) values - ('Create tables'), - ('Enable security'), - ('Add data'), - ('Fetch data from the API'); + ('alice', 4200), + ('bob', 3700), + ('carol', 5100), + ('dave', 2900); ``` @@ -172,7 +177,7 @@ We'll create a database table called `todos` for storing tasks. This creates a c - Find your API URL and Keys in your Dashboard [API Settings](/dashboard/project/_/settings/api). You can now query your "todos" table by appending `/rest/v1/todos` to the API URL. + You can find your API URL and Keys in the [**Settings > API Settings**](/dashboard/project/_/settings/api) section of the Dashboard. Query the `leaderboard` table by appending `/rest/v1/leaderboard` to the API URL. Copy this block of code, substitute `` and ``, then run it from a terminal. @@ -180,7 +185,7 @@ We'll create a database table called `todos` for storing tasks. This creates a c ```bash Terminal - curl 'https://.supabase.co/rest/v1/todos' \ + curl 'https://.supabase.co/rest/v1/leaderboard?select=*&order=score.desc' \ -H "apikey: " ``` @@ -198,14 +203,13 @@ There are several options for accessing your data: You can query the route in your browser, by appending the `publishable` key as a query parameter: -`https://.supabase.co/rest/v1/todos?apikey=` +`https://.supabase.co/rest/v1/leaderboard?apikey=` ### Curl -``` -curl 'https://.supabase.co/rest/v1/todos?select=*' \ +```sh +curl 'https://.supabase.co/rest/v1/leaderboard?select=*&order=score.desc' \ -H "apikey: " \ - -H "Authorization: Bearer " ``` ### Client libraries @@ -222,7 +226,10 @@ We provide a number of [Client Libraries](https://github.com/supabase/supabase#c ```js -const { data, error } = await supabase.from('todos').select() +const { data, error } = await supabase + .from('leaderboard') + .select() + .order('score', { ascending: false }) ``` @@ -230,7 +237,10 @@ const { data, error } = await supabase.from('todos').select() ```dart -final data = await supabase.from('todos').select('*'); +final data = await supabase + .from('leaderboard') + .select('*') + .order('score', ascending: false); ``` @@ -239,7 +249,12 @@ final data = await supabase.from('todos').select('*'); ```python -response = supabase.table('todos').select("*").execute() +response = ( + supabase.table('leaderboard') + .select("*") + .order('score', desc=True) + .execute() +) ``` @@ -248,7 +263,10 @@ response = supabase.table('todos').select("*").execute() ```swift -let response = try await supabase.from("todos").select() +let response = try await supabase + .from("leaderboard") + .select() + .order("score", ascending: false) ``` diff --git a/apps/docs/content/guides/api/securing-your-api.mdx b/apps/docs/content/guides/api/securing-your-api.mdx index f065793bb0ad7..422ef68cc0af1 100644 --- a/apps/docs/content/guides/api/securing-your-api.mdx +++ b/apps/docs/content/guides/api/securing-your-api.mdx @@ -1,12 +1,81 @@ --- id: 'securing-your-api' title: 'Securing your API' -description: 'Securing your Data API with Postgres Row Level Security.' +description: 'Secure your Data API with explicit grants and Postgres Row Level Security.' --- -The data APIs are designed to work with Postgres Row Level Security (RLS). If you use [Supabase Auth](/docs/guides/auth), you can restrict data based on the logged-in user. +The Data API is designed to work with Postgres' built-in access controls. Two layers work together: -To control access to your data, you can use [Policies](/docs/guides/auth#policies). +1. **Grants** determine which Postgres roles (`anon`, `authenticated`, `service_role`) can reach a given table, view, or function over the Data API. +2. **Row Level Security (RLS) policies** then determine which rows those roles can read or modify from the tables exposed in step 1. +3. **Both together** grant control _whether_ a role can touch an object. RLS controls _what_ rows they see. + +## Grant access explicitly + +A table isn't reachable through the Data API unless you have granted a role privileges on it. Grant the minimum privileges each role needs. For example: + +```sql +-- Read-only access for anonymous clients +grant select on table public.your_table to anon; + +-- Full access for signed-in users (still subject to RLS) +grant select, insert, update, delete on table public.your_table to authenticated; + +-- Full access for server-side code using the service role +grant select, insert, update, delete on table public.your_table to service_role; + +-- For functions, grant EXECUTE to the roles that should call them +grant execute on function public.your_function() to anon, authenticated; +``` + +If a required grant is missing, PostgREST returns a `42501` error with a hint that names the exact `GRANT` statement you need: + +```json +{ + "code": "42501", + "message": "permission denied for table your_table", + "hint": "Grant the required privileges to the current role with: GRANT SELECT ON public.your_table TO anon;" +} +``` + +See [the Database API 42501 errors troubleshooting guide](/docs/guides/troubleshooting/database-api-42501-errors) for the full troubleshooting flow. + + + +Bundle grants with your RLS setup in the same migration. They belong together: `grant` controls role access, `enable row level security` and policies control row access. + + + +## Default privileges for new tables and functions + +By default on existing projects, tables and functions you create in `public` are automatically granted `SELECT`, `INSERT`, `UPDATE`, `DELETE` (or `EXECUTE` for functions) to `anon`, `authenticated`, and `service_role`. That means a new table is reachable through the Data API the moment it lands, even if you forgot to enable RLS or did not intend to expose it. + +Supabase is moving the platform default to **revoke** these automatic grants, so that exposure becomes opt-in: +{/* TODO: link to changelog */} +To opt an existing project in today, open the [SQL Editor](/dashboard/project/_/sql/new) and run: + +```sql +alter default privileges for role postgres in schema public + revoke select, insert, update, delete on tables from anon, authenticated, service_role; + +alter default privileges for role postgres in schema public + revoke execute on functions from anon, authenticated, service_role; + +alter default privileges for role postgres in schema public + revoke usage, select on sequences from anon, authenticated, service_role; + +alter default privileges for role postgres in schema public + revoke execute on functions from public; +``` + +## Disable the Data API + +If your app never uses Supabase client libraries, REST, or GraphQL data endpoints, turn the Data API off: + +1. Open the [Data API integration overview](/dashboard/project/_/integrations/data_api/overview) in the Dashboard. +2. Turn **Enable Data API** off. + +With the Data API disabled, none of the auto-generated REST endpoints respond, regardless of grants or RLS. ## Add RLS policies @@ -39,7 +108,7 @@ Any table created through the Supabase Dashboard will have RLS enabled by defaul ```sql alter table - todos enable row level security; + your_table enable row level security; ``` @@ -49,7 +118,7 @@ With RLS enabled, you can create Policies that allow or disallow users to access -Any exposed table **without RLS enabled** can be accessed by roles with matching Data API grants (for example, `anon`). Always make sure RLS is enabled, or that you've got other controls in place to avoid unauthorized access to your project's data. +Any granted table **without RLS enabled** can be accessed by roles with matching Data API grants (for example, `anon`). Always make sure RLS is enabled, or that you've got other controls in place to avoid unauthorized access to your project's data. @@ -255,14 +324,14 @@ To clear old entries in the `private.rate_limits` table, set up a [pg_cron](/doc -Some applications can benefit from using additional API keys managed by the application **in addition to the [Supabase API keys](/docs/guides/api/api-keys)**. This is commonly necessary in cases like: +Some applications can benefit from using additional API keys managed by the application **in addition to the [Supabase API keys](/docs/guides/getting-started/api-keys)**. This is commonly necessary in cases like: - Applications that use the Data API without RLS policies. - Applications that do not use [Supabase Auth](/auth) or any other authentication system and rely on the `anon` role. -Using the `apikey` header with the [Supabase API keys](/docs/guides/api/api-keys) is mandatory and not configurable. If you use additional API keys, you have to distribute both the `publishable` API key and your application's custom API key. +Using the `apikey` header with the [Supabase API keys](/docs/guides/getting-started/api-keys) is mandatory and not configurable. If you use additional API keys, you have to distribute both the `publishable` API key and your application's custom API key. diff --git a/apps/docs/content/guides/auth/jwts.mdx b/apps/docs/content/guides/auth/jwts.mdx index aa509cdf027d3..9782629bad1cf 100644 --- a/apps/docs/content/guides/auth/jwts.mdx +++ b/apps/docs/content/guides/auth/jwts.mdx @@ -67,7 +67,7 @@ A [digital signature](https://en.wikipedia.org/wiki/Digital_signature) using a [ Supabase creates JWTs in these cases for you: 1. When using Supabase Auth, an access token (JWT) is created for each user while they remain signed in. These are short lived, so they are continuously issued as your user interacts with Supabase APIs. -2. As the legacy JWT-based [API keys](/docs/guides/api/api-keys) `anon` and `service_role`. These have a 10 year expiry and are signed with a shared secret, making them hard to rotate or expire. These JWTs express public access via the `anon` key, or elevated access via the `service_role` key. We strongly recommend switching to publishable and secret API keys. +2. As the legacy JWT-based [API keys](/docs/guides/getting-started/api-keys) `anon` and `service_role`. These have a 10 year expiry and are signed with a shared secret, making them hard to rotate or expire. These JWTs express public access via the `anon` key, or elevated access via the `service_role` key. We strongly recommend switching to publishable and secret API keys. 3. On-the-fly when using publishable or secret API keys. Each API key is transformed into a short-lived JWT that is then used to authorize access to your data. Accessing these short-lived tokens is generally not possible. In addition to creating JWTs, Supabase can also accept JWTs from other Auth servers via the [Third-Party Auth](/docs/guides/auth/third-party/overview) feature or ones you've made yourself using the legacy JWT secret or if you've imported in [JWT Signing Key](/docs/guides/auth/signing-keys). @@ -265,4 +265,4 @@ Check the JWT verification libraries for your language on how to securely verify - JWT debugger: https://jwt.io/ - [JWT Signing Keys](/docs/guides/auth/signing-keys) - [JWT Claims Reference](/docs/guides/auth/jwt-fields) - Complete reference for all JWT claims used by Supabase Auth -- [API keys](/docs/guides/api/api-keys) +- [API keys](/docs/guides/getting-started/api-keys) diff --git a/apps/docs/content/guides/auth/quickstarts/react.mdx b/apps/docs/content/guides/auth/quickstarts/react.mdx index e15cb64230b42..6d498228376af 100644 --- a/apps/docs/content/guides/auth/quickstarts/react.mdx +++ b/apps/docs/content/guides/auth/quickstarts/react.mdx @@ -109,7 +109,7 @@ hideToc: true - Before proceeding, change the email template to support support a server-side authentication flow that sends a token hash: + Before proceeding, change the email template to support a server-side authentication flow that sends a token hash: - Go to the [Auth templates](/dashboard/project/_/auth/templates) page in your dashboard. - Select the Confirm sign up template. diff --git a/apps/docs/content/guides/auth/rate-limits.mdx b/apps/docs/content/guides/auth/rate-limits.mdx index 0b3aedc8ff59d..2d6f7ef0c9e1d 100644 --- a/apps/docs/content/guides/auth/rate-limits.mdx +++ b/apps/docs/content/guides/auth/rate-limits.mdx @@ -46,7 +46,7 @@ The table below shows the rate limit quotas and additional details for authentic ## IP address forwarding -By default, Supabase Auth uses the IP address of the client for rate limiting. In certain cases, such as when using server-side frameworks or proxies in front of a project, it may be necessary to forward the end-user IP address to avoid being rate limited based on the address of the server-side client. To use a forwarded IP address for rate limiting in Supabase Auth, set the `Sb-Forwarded-For` header to the end-user IP address and make a request with a [secret API key](/docs/guides/api/api-keys). Publishable API keys and legacy `anon`/`service_role` API keys are not supported. +By default, Supabase Auth uses the IP address of the client for rate limiting. In certain cases, such as when using server-side frameworks or proxies in front of a project, it may be necessary to forward the end-user IP address to avoid being rate limited based on the address of the server-side client. To use a forwarded IP address for rate limiting in Supabase Auth, set the `Sb-Forwarded-For` header to the end-user IP address and make a request with a [secret API key](/docs/guides/getting-started/api-keys). Publishable API keys and legacy `anon`/`service_role` API keys are not supported. IP address forwarding must be explicitly enabled for new projects. You can enable this feature in your project under the **IP Address Forwarding** section of your project's rate limit settings at [**Authentication** > **Rate Limits**](/dashboard/project/_/auth/rate-limits). diff --git a/apps/docs/content/guides/auth/signing-keys.mdx b/apps/docs/content/guides/auth/signing-keys.mdx index 9ca24c1656bc2..9f10a3d6c3fe2 100644 --- a/apps/docs/content/guides/auth/signing-keys.mdx +++ b/apps/docs/content/guides/auth/signing-keys.mdx @@ -20,17 +20,17 @@ When a JWT is issued by Supabase Auth, the key used to create its [signature](ht ### Benefits of the signing keys system -We've designed the Signing keys system to address many problems the legacy system had. It goes hand-in-hand with the [publishable and secret API keys](/docs/guides/api/api-keys). - -| Benefit | Legacy JWT secret | JWT signing keys | -| ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Performance | Increased app latency as JWT validation is done by Auth server. | If using asymmetric signing key, JWT validation is fast and does not involve Auth server. | -| Reliability | To ensure secure revocation, Auth server is in the hot path of your application. | If using asymmetric signing key, JWT validation is local and fast and does not involve Auth server. | -| Security | Requires changing of your application's backend components to fully revoke a compromised secret. | If using asymmetric signing key, revocation is automatic via the key discovery endpoint. | -| Zero-downtime rotation | Downtime, sometimes being significant. Requires careful coordination with [API keys](/docs/guides/api/api-keys). | No downtime, as each rotation step is independent and reversible. | -| Users signed out during rotation | Currently active users get immediately signed out. | No users get signed out. | -| Independence from API keys | `anon` and `service_role` must be rotated simultaneously. | [Publishable and secret API keys](/docs/guides/api/api-keys) no longer are based on the JWT signing key and can be independently managed. | -| Security compliance frameworks (SOC2, etc.) | Difficult to remain aligned as the secret can be extracted from Supabase. | Easier alignment as the private key or shared secret can't be extracted. [Row Level Security](/docs/guides/database/postgres/row-level-security) has strong key revocation guarantees. | +We've designed the Signing keys system to address many problems the legacy system had. It goes hand-in-hand with the [publishable and secret API keys](/docs/guides/getting-started/api-keys). + +| Benefit | Legacy JWT secret | JWT signing keys | +| ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Performance | Increased app latency as JWT validation is done by Auth server. | If using asymmetric signing key, JWT validation is fast and does not involve Auth server. | +| Reliability | To ensure secure revocation, Auth server is in the hot path of your application. | If using asymmetric signing key, JWT validation is local and fast and does not involve Auth server. | +| Security | Requires changing of your application's backend components to fully revoke a compromised secret. | If using asymmetric signing key, revocation is automatic via the key discovery endpoint. | +| Zero-downtime rotation | Downtime, sometimes being significant. Requires careful coordination with [API keys](/docs/guides/getting-started/api-keys). | No downtime, as each rotation step is independent and reversible. | +| Users signed out during rotation | Currently active users get immediately signed out. | No users get signed out. | +| Independence from API keys | `anon` and `service_role` must be rotated simultaneously. | [Publishable and secret API keys](/docs/guides/getting-started/api-keys) no longer are based on the JWT signing key and can be independently managed. | +| Security compliance frameworks (SOC2, etc.) | Difficult to remain aligned as the secret can be extracted from Supabase. | Easier alignment as the private key or shared secret can't be extracted. [Row Level Security](/docs/guides/database/postgres/row-level-security) has strong key revocation guarantees. | ## Getting started @@ -58,7 +58,7 @@ Key rotation and revocation are one of the most important processes for maintain - The legacy JWT secret has been leaked in logs, committed to source control, or accidentally exposed in the frontend build of your application, a library, desktop or mobile app package, etc. - You suspect that a [member of your organization](/docs/guides/platform/access-control) has lost control of their devices, and a malicious actor may have accessed the JWT secret via the Supabase dashboard or by accessing your application's backend configuration. - You suspect that an ex-team-member of your organization may be a malicious actor, by abusing the power the legacy JWT secret provides. -- Make sure you also switch to [publishable and secret API keys](/docs/guides/api/api-keys) and disable the `anon` and `service_role` keys. +- Make sure you also switch to [publishable and secret API keys](/docs/guides/getting-started/api-keys) and disable the `anon` and `service_role` keys. - If you've imported a private key, and you're suspecting that this private key has been compromised on your end similarly. **Closer alignment to security best practices and compliance frameworks (SOC2, PCI-DSS, ISO27000, HIPAA, ...)** @@ -233,7 +233,7 @@ Finally, you can use your newly minted JWT by setting the `Authorization: Bearer -A separate `apikey` header is required to access your project's APIs. This can be a [publishable, secret or the legacy `anon` or `service_role` keys](/docs/guides/api/api-keys). Using your minted JWT is not possible in this header. +A separate `apikey` header is required to access your project's APIs. This can be a [publishable, secret or the legacy `anon` or `service_role` keys](/docs/guides/getting-started/api-keys). Using your minted JWT is not possible in this header. @@ -248,3 +248,45 @@ This is to ensure you have the ability, should you need it, to go back to the le ### Why does revoking the legacy JWT secret require disabling of `anon` and `service_role` API keys? Unfortunately `anon` and `service_role` are not just API keys, but are also valid JSON Web Tokens, signed by the legacy JWT secret. Revoking the legacy JWT secret means that your application no longer trusts any JWT signed with it. Therefore before you revoke the legacy JWT secret, you must disable the `anon` and `service_role` to ensure a consistent security setup. + +### Using JWT-based `anon` key in a mobile, desktop, or CLI application and need to rotate a `service_role` JWT secret? + +If the JWT secret is secure, substitute the `service_role` JWT-based key with a new secret key which you can create in the [**Settings > API Keys**](/dashboard/project/_/settings/api-keys/) section of the Dashboard. This prevents downtime for your application. + +### Why are `anon` and `service_role` JWT-based keys no longer recommended? + +Since the start of Supabase, the JWT-based `anon` and `service_role` keys were the right trade-off against simplicity and relative security for your project. Unfortunately they pose some real challenges in live applications, especially around rotation and security best practices. + +The main reasons for preferring the publishable and secret keys (`sb_publishable_...` and `sb_secret_...`) are: + +- Tight coupling between the JWT secret (which itself can be compromised, if you mint your own JWTs), the `anon` (low privilege) and `service_role` (high privilege) and `authenticated` (issued by Supabase Auth) Postgres roles. +- Inability to independently rotate each aspect of the keys, without downtime. +- Inability to roll-back an unnecessary or problematic JWT secret rotation. +- Publishing new versions of mobile applications can take days and often weeks in the app review phase with Apple's App Store and Google's Play Store. A forced rotation can cause weeks of downtime for mobile app users. +- Users may continue using desktop, CLI and mobile apps with very old versions, making rotation impossible without a forced version upgrade. +- JWTs had 10-year expiry duration, giving malicious actors more to work with. +- JWTs were self-referential and full of redundant information not necessary for achieving their primary purpose. +- JWTs are large, hard to parse, verify, and manipulate -- leading to insecure logging or bad security practices. +- They were signed with a symmetric JWT secret. + +### Can you still use an old `anon` and `service-role` API keys after enabling the publishable and secret keys? + +Yes. This allows you to transition between the API keys with zero downtime by gradually swapping your clients while both sets of keys are active. See the next question for how to deactivate your keys once all your clients are switched over. + +### How to deactivate the `anon` and `service_role` JWT-based API keys after moving to publishable and secret keys? + +You can do this in the [**Settings > API Keys**](/dashboard/project/_/settings/api-keys/) section of the Dashboard. To prevent downtime in your application's components, use the last used indicators on the page to confirm that these are no longer used before deactivating. + +You can re-activate them should you need to. + +### How are publishable and secret keys implemented on the hosted platform? + +When your applications use the Supabase APIs they go through a component called the API Gateway on the Supabase hosted platform. This provides us (and therefore you) with the following features: + +- Observability and logging. +- Performance and request routing (such as to read-replicas). +- Security, for blocking malicious patterns or behavior on a global scale. + +This API Gateway component is able to verify the API key (sent in the `apikey` request header, or for WebSocket in a query param) against your project's publishable and secret key list. If the match is found, it mints a temporary, short-lived JWT that is then forwarded down to your project's servers. + +It may be possible to replicate similar behavior if you self-host by using programmable proxies such as [Kong](https://konghq.com/), [Envoy](https://www.envoyproxy.io/), [NGINX](https://nginx.org/) or similar. diff --git a/apps/docs/content/guides/database/data-api.mdx b/apps/docs/content/guides/database/data-api.mdx deleted file mode 100644 index 3db9204f64e2a..0000000000000 --- a/apps/docs/content/guides/database/data-api.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: 'Data API' -description: 'Quick options for managing Data API exposure and access.' ---- - -The Supabase Data API is a standalone server that sits between your application client code and your database. It automatically generates a fully RESTful API based on your database structure, allowing you to interact with your database through HTTP endpoints. - -With the Data API, you have granular control over exposure: expose specific tables and functions by granting Data API roles the access they need, or enable **Default privileges for new entities** to automatically grant access to new tables and functions in `public`. - - - -Any table that is exposed through the Data API should have [Row Level Security (RLS) enabled](/docs/guides/database/postgres/row-level-security) to prevent unauthorized data access. - - - -## Expose specific tables and functions (recommended) - -In [Data API integrations settings](/dashboard/project/_/integrations/data_api/settings), expose specific tables and functions and grant only the privileges each role needs. - -```sql -grant select on table public.your_table to anon; -grant select, insert, update, delete on table public.your_table to authenticated; -grant execute on function public.your_function to anon, authenticated; -``` - -## Use default privileges for new entities in `public` - -If you want new entities in `public` to be accessible automatically, enable **Default privileges for new entities** in the [**Integrations > Data API**](/dashboard/project/_/integrations/data_api/settings) section of the Dashboard. This applies only to new tables and functions in `public`. - -```sql -alter default privileges for role postgres in schema public -grant select, insert, update, delete on tables to anon, authenticated, service_role; - -alter default privileges for role postgres in schema public -grant execute on functions to anon, authenticated, service_role; -``` - -## Disable the Data API completely - -If your app never uses Supabase client libraries, REST, or GraphQL data endpoints: - -1. In the [**Integrations > Data API**](/dashboard/project/_/integrations/data_api/overview) section of the Dashboard. -1. Turn **Enable Data API** off. - -## Learn more - -To learn more about the Data API, see the [full guide](/docs/guides/api). diff --git a/apps/docs/content/guides/database/extensions/pg_net.mdx b/apps/docs/content/guides/database/extensions/pg_net.mdx index 2e3d54a654748..29e4e47e703ba 100644 --- a/apps/docs/content/guides/database/extensions/pg_net.mdx +++ b/apps/docs/content/guides/database/extensions/pg_net.mdx @@ -329,16 +329,22 @@ where "name" like 'pg_net%'; ### Alter settings -Change variables: +You must change the `pg_net` settings at the system level. + + + +Changing these settings requires superuser privileges. Contact Support to have the required permission granted for the parameter you want to change, e.g.: ```sql -alter role "postgres" set pg_net.ttl to '24 hours'; -alter role "postgres" set pg_net.batch_size to 500; +grant alter system on parameter pg_net.ttl to postgres; ``` -Then reload the settings and restart the `pg_net` background worker with: + + +Once the privilege is assigned, apply the setting at the system level and restart the background worker: ```sql +alter system set pg_net.ttl to '24 hours'; select net.worker_restart(); ``` diff --git a/apps/docs/content/guides/database/secure-data.mdx b/apps/docs/content/guides/database/secure-data.mdx index 7aadc2f7f1253..8ca58f985a98e 100644 --- a/apps/docs/content/guides/database/secure-data.mdx +++ b/apps/docs/content/guides/database/secure-data.mdx @@ -19,7 +19,7 @@ Put custom server-side logic between your client and database with [Edge Functio ### Direct database connections -Connect to Postgres with a connection string from trusted servers, workers, or tools. Keep database credentials secret and use the right [connection method](/docs/guides/database/connecting-to-postgres) for your environment. You can [disable the Data API](/docs/guides/database/data-api#disable-the-data-api-completely) if your app only uses direct connections. +Connect to Postgres with a connection string from trusted servers, workers, or tools. Keep database credentials secret and use the right [connection method](/docs/guides/database/connecting-to-postgres) for your environment. You can [disable the Data API](/docs/guides/api/securing-your-api#disable-the-data-api) if your app only uses direct connections. ## Frontend access @@ -44,6 +44,6 @@ Supabase and Postgres provide you with multiple ways to manage security, includi - [Row Level Security](/docs/guides/database/postgres/row-level-security) - [Column Level Security](/docs/guides/database/postgres/column-level-security) -- [Data API](/docs/guides/database/data-api) +- [Securing your API](/docs/guides/api/securing-your-api) - [Managing Postgres roles](/docs/guides/database/postgres/roles) - [Managing secrets with Vault](/docs/guides/database/vault) diff --git a/apps/docs/content/guides/api/api-keys.mdx b/apps/docs/content/guides/getting-started/api-keys.mdx similarity index 53% rename from apps/docs/content/guides/api/api-keys.mdx rename to apps/docs/content/guides/getting-started/api-keys.mdx index f1a7ec258c580..64bcb052eea60 100644 --- a/apps/docs/content/guides/api/api-keys.mdx +++ b/apps/docs/content/guides/getting-started/api-keys.mdx @@ -6,6 +6,12 @@ description: "First-layer protection for your project's data" Supabase gives you fine-grained control over which application components are allowed to access your project through API keys. + + +In most cases, you can get the correct key from [the Project's **Connect** dialog](/dashboard/project/_?showConnect=true), but if you want a specific key, you can find all keys in the [**Settings > API Keys**](/dashboard/project/_/settings/api-keys/) section of the Dashboard: + + + API keys provide the first layer of authentication for data access. Auth then builds upon that. This chart covers the differences: | Responsibility | Question | Answer | @@ -17,77 +23,55 @@ API keys provide the first layer of authentication for data access. Auth then bu An API key authenticates an application component to give it access to Supabase services. An application component might be a web page, a mobile app, or a server. The API key _does not_ distinguish between users, only between applications. -There are 4 types of API keys that can be used with Supabase: +There are 4 types of API keys that you can use with Supabase: | Type | Format | Privileges | Availability | Use | | ---------------------------------------------------------- | ---------------------------------------------------------------- | ---------- | --------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Publishable key | `sb_publishable_...` | Low | Platform | Safe to expose online: web page, mobile or desktop app, GitHub actions, CLIs, source code. | | Secret keys | `sb_secret_...` | Elevated | Platform | **Only use in backend components of your app:** servers, already secured APIs (admin panels), [Edge Functions](/docs/guides/functions), microservices, etc. They provide _full access_ to your project's data, bypassing [Row Level Security](/docs/guides/database/postgres/row-level-security). | -| `anon` | JWT (long lived) | Low | Platform, CLI | Exactly like the publishable key. | -| `service_role` | JWT (long lived) | Elevated | Platform, CLI | Exactly like secret keys. | +| `anon` | JWT (long lived) | Low | Platform, CLI | Legacy version of publishable keys. | +| `service_role` | JWT (long lived) | Elevated | Platform, CLI | Legacy version of secret keys. | - + -`anon` and `service_role` keys are based on the project's JWT secret. They are generated when your project is created and can only be changed when you rotate the JWT secret. This can cause significant issues in production applications. Use the publishable and secret keys instead. +Supabase has changed the way keys work to improve project security and developer experience. You can read [the full announcement](https://github.com/orgs/supabase/discussions/29260). - +`anon` and `service_role` keys are based on the project's JWT secret. They are generated when your project is created and you can only change them when you rotate the JWT secret. This can cause significant issues in production applications. **You should now use the `sb_publishable_xxx` and `sb_secret_xxx` keys instead**. - - -Supabase is changing the way keys work to improve project security and developer experience. You can [read the full announcement](https://github.com/orgs/supabase/discussions/29260), but in the transition period, you can use both the current `anon` and `service_role` keys and the new publishable key with the form `sb_publishable_xxx` which will replace the older keys. +You can still find legacy keys in the **Legacy anon, service_role API keys** tab of the [**Settings > API Keys**](/dashboard/project/_/settings/api-keys/) section of the Dashboard: -## Where to find keys - -You can find API keys in a couple of different places. - -In most cases, you can get the correct key from [the Project's **Connect** dialog](/dashboard/project/_?showConnect=true), but if you want a specific key, you can find all keys in [the API Keys section of a Project's Settings page](/dashboard/project/_/settings/api-keys/): - -- **For legacy keys**, copy the `anon` key for client-side operations and the `service_role` key for server-side operations from the **Legacy API Keys** tab. -- **For new keys**, open the **API Keys** tab, if you don't have a publishable key already, click **Create new API Keys**, and copy the value from the **Publishable key** section. +## Publishable keys -## `anon` and publishable keys - -The `anon` and publishable keys secure the public components of your application. Public components run in environments where it is impossible to secure any secrets. These include: +Publishable keys identify the public components of your application. Public components run in environments where it is impossible to secure any secrets. These include: - Web pages, where the key is bundled in source code. - Mobile or desktop applications, where the key is bundled inside the compiled packages or executables. - CLI, scripts, tools, or other pre-built executables. - Other publicly available APIs that return the key without prior additional authorization. -These environments are always considered public because anyone can retrieve the key from the source code or build artifacts. Obfuscation can increase the difficulty, but never eliminate the possibility. (In general, obfuscation, Turing test challenges, and specialized knowledge do not count as authorization for the purpose of securing secrets.) +These environments are always considered public because anyone can retrieve the key from the source code or build artifacts. ### Interaction with Supabase Auth -Using the `anon` or publishable key does not mean that your user is anonymous. (Thinking of both these keys as publishable rather than `anon` makes the mental model clearer.) - -Your application can be authenticated with the publishable key, while your user is authenticated (via Supabase Auth) with their personal JWT: +Using a publishable key does not mean that your user is anonymous. You can authenticate your application with the publishable key, while your user is authenticated (via Supabase Auth) with their personal JWT: | Key | User logged in via Supabase Auth | Postgres role used for RLS, etc. | | --------------- | -------------------------------- | -------------------------------- | | Publishable key | No | `anon` | -| `anon` | No | `anon` | | Publishable key | Yes | `authenticated` | -| `anon` | Yes | `authenticated` | - -### Protection - -These keys provide first-layer protection to your project's data, performance and bill, such as: - -- Providing basic Denial-of-Service protection, by requiring a minimal threshold of knowledge. -- Protecting your bill by ignoring bots, scrapers, automated vulnerability scanners and other well meaning or random Internet activity. ### Security considerations -The publishable and `anon` keys are not intended to protect from the following, since key retrieval is always possible from a public component: +Publishable keys are not intended to protect from the following, since key retrieval is always possible from a public component: - Static or dynamic code analysis and reverse engineering attempts. - Use of the Network inspector in the browser. - Cross-site request forgery, cross-site scripting, phishing attacks. - Man-in-the-middle attacks. -When using the publishable or `anon` key, access to your project's data is guarded by Postgres via the built-in `anon` and `authenticated` roles. For full protection make sure: +When using a publishable key, access to your project's data is guarded by Postgres via the built-in `anon` and `authenticated` roles. For full protection make sure: - You have enabled Row Level Security on all tables. - You regularly review your Row Level Security policies for permissions granted to the `anon` and `authenticated` roles. @@ -95,9 +79,9 @@ When using the publishable or `anon` key, access to your project's data is guard Your project's [Security Advisor](/dashboard/project/_/advisors/security) constantly checks for common security problems with the built-in Postgres roles. Make sure you carefully review each finding before dismissing it. -## `service_role` and secret keys +## What secret keys allow access to -Unlike the `anon` and publishable key, the `service_role` and secret keys allow elevated access to your project's data. It is meant to be used only in secure, developer-controlled components of your application, such as: +Unlike publishable keys, secret keys allow elevated access to your project's data. It is meant to be used only in secure, developer-controlled components of your application, such as: - Servers that implement prior authorization themselves, such as Edge Functions, microservices, traditional or specialized web servers. - Periodic jobs, queue processors, topic subscribers. @@ -106,11 +90,11 @@ Unlike the `anon` and publishable key, the `service_role` and secret keys allow -Never expose your `service_role` and secret keys publicly. Your data is at risk. **Do not:** +Never expose your secret keys publicly. Your data is at risk. **Do not:** -- Add in web pages, public documents, source code, bundle in executables or packages for mobile, desktop or CLI apps. +- Add it to web pages, public documents, source code, bundle in executables or packages for mobile, desktop or CLI apps. - Send over chat applications, email or SMS to your peers. -- Never use in a browser, even on `localhost`! +- Never use in a browser, even on `localhost`. - Do not pass in URLs or query params, as these are often logged. - Be careful passing them in request headers without prior log sanitization. - Take extra care logging even potentially **invalid API keys**. Simple typos might reveal the real key in the future. @@ -120,7 +104,7 @@ Ensure you handle them with care and using [secure coding practices](https://owa -Secret keys and the `service_role` JWT-based API key authorize access to your project's data via the built-in `service_role` Postgres role. By design, this role has full access to your project's data. It also uses the [`BYPASSRLS` attribute](https://www.postgresql.org/docs/current/ddl-rowsecurity.html#:~:text=BYPASSRLS), skipping any and all Row Level Security policies you attach. +Secret keys authorize access to your project's data via the built-in `service_role` Postgres role. By design, this role has full access to your project's data. It also uses the [`BYPASSRLS` attribute](https://www.postgresql.org/docs/current/ddl-rowsecurity.html#:~:text=BYPASSRLS), skipping any and all Row Level Security policies you attach. The secret key is an improvement over the old JWT-based `service_role` key, and we recommend using it where possible. It adds more checks to prevent misuse, specifically: @@ -132,7 +116,7 @@ The secret key is an improvement over the old JWT-based `service_role` key, and Below are some starting guidelines on how to securely work with secret keys: - Always work with secret keys on computers you fully own or control. -- Use secure & encrypted send tools to share API keys with others (often provided by good password managers), but prefer the [API Keys](/dashboard/project/_/settings/api-keys) dashboard instead. +- Use secure & encrypted send tools to share API keys with others (often provided by good password managers), but prefer the [**Settings > API Keys**](/dashboard/project/_/settings/api-keys/) section of the Dashboard instead. - Prefer encrypting them when stored in files or environment variables. - Do not add in source control, especially for CI scripts and tools. Prefer using the tool's native secrets capability instead. - Prefer using a separate secret key for each separate backend component of your application, so that if one is found to be vulnerable or to have leaked the key you will only need to change it and not all. @@ -144,7 +128,7 @@ Below are some starting guidelines on how to securely work with secret keys: Don't rush if this has happened, or you are suspecting it has. Make sure you have fully considered the situation and have remediated the root cause of the suspicion or vulnerability **first**. Consider using the [OWASP Risk Rating Methodology](https://owasp.org/www-community/OWASP_Risk_Rating_Methodology) as an easy way to identify the severity of the incident and to plan your next steps. -Rotating a secret key (`sb_secret_...`) is easy and painless. Use the [API Keys](/dashboard/project/_/settings/api-keys) dashboard to create a new secret API key, then replace it with the compromised key. Once all components are using the new key, delete the compromised one. +To rotate a secret key (`sb_secret_...`), use the [**Settings > API Keys**](/dashboard/project/_/settings/api-keys/) section of the Dashboard to create a new secret API key, then replace it with the compromised key. Once all components are using the new key, delete the compromised one. **Deleting a secret key is irreversible and once done it will be gone forever.** @@ -157,57 +141,3 @@ As the publishable and secret keys are no longer JWT-based, there are some known - You cannot send a publishable or secret key in the `Authorization: Bearer ...` header, except if the value exactly equals the `apikey` header. In this case, your request will be forwarded down to your project's database, but will be rejected as the value is not a JWT. - Edge Functions **only support JWT verification** via the `anon` and `service_role` JWT-based API keys. You will need to use the `--no-verify-jwt` option when using publishable and secret keys. The Supabase platform does not verify the `apikey` header when using Edge Functions in this way. Implement your own `apikey`-header authorization logic inside the Edge Function code itself. - Public Realtime connections are limited to 24 hours in duration, unless the connection is upgraded and further maintained with user-level authentication via Supabase Auth or a supported Third-Party Auth provider. - -## Frequently asked questions - -{/* supa-mdx-lint-disable Rule004ExcludeWords */} - -### I am using JWT-based `anon` key in a mobile, desktop, or CLI application and need to rotate my `service_role` JWT secret? - -If the JWT secret is secure, substitute the `service_role` JWT-based key with a new secret key which you can create in the [API Keys](/dashboard/project/_/settings/api-keys) dashboard. This will prevent downtime for your application. - -### Can I still use my old `anon` and `service-role` API keys after enabling the publishable and secret keys? - -Yes. This allows you to transition between the API keys with zero downtime by gradually swapping your clients while both sets of keys are active. See the next question for how to deactivate your keys once all your clients are switched over. - -### How do I deactivate the `anon` and `service_role` JWT-based API keys after moving to publishable and secret keys? - -You can do this in the [API Keys](/dashboard/project/_/settings/api-keys) dashboard. To prevent downtime in your application's components, use the last used indicators on the page to confirm that these are no longer used before deactivating. - -You can re-activate them should you need to. - -### Why are `anon` and `service_role` JWT-based keys no longer recommended? - -Since the start of Supabase, the JWT-based `anon` and `service_role` keys were the right trade-off against simplicity and relative security for your project. Unfortunately they pose some real challenges in live applications, especially around rotation and security best practices. - -The main reasons for preferring the publishable and secret keys (`sb_publishable_...` and `sb_secret_...`) are: - -- Tight coupling between the JWT secret (which itself can be compromised, if you mint your own JWTs), the `anon` (low privilege) and `service_role` (high privilege) and `authenticated` (issued by Supabase Auth) Postgres roles. -- Inability to independently rotate each aspect of the keys, without downtime. -- Inability to roll-back an unnecessary or problematic JWT secret rotation. -- Publishing new versions of mobile applications can take days and often weeks in the app review phase with Apple's App Store and Google's Play Store. A forced rotation can cause weeks of downtime for mobile app users. -- Users may continue using desktop, CLI and mobile apps with very old versions, making rotation impossible without a forced version upgrade. -- JWTs had 10-year expiry duration, giving malicious actors more to work with. -- JWTs were self-referential and full of redundant information not necessary for achieving their primary purpose. -- JWTs are large, hard to parse, verify, and manipulate -- leading to insecure logging or bad security practices. -- They were signed with a symmetric JWT secret. - -### Why is there no publishable or secret keys in the CLI / self-hosting? - -Publishable and secret keys are only available on the Supabase hosted platform. They are managed by our API Gateway component, which does not currently have a CLI equivalent. - -We are looking into providing similar but limited in scope support for publishable or secret keys in the future. For now you can only use the `anon` and `service_role` JWT-based keys there. - -For advanced users, see the following question on how these keys are implemented on the hosted platform for an idea on how to provide similar functionality for yourself. - -### How are publishable and secret keys implemented on the hosted platform? - -When your applications use the Supabase APIs they go through a component called the API Gateway on the Supabase hosted platform. This provides us (and therefore you) with the following features: - -- Observability and logging. -- Performance and request routing (such as to read-replicas). -- Security, for blocking malicious patterns or behavior on a global scale. - -This API Gateway component is able to verify the API key (sent in the `apikey` request header, or for WebSocket in a query param) against your project's publishable and secret key list. If the match is found, it mints a temporary, short-lived JWT that is then forwarded down to your project's servers. - -It may be possible to replicate similar behavior if you self-host by using programmable proxies such as [Kong](https://konghq.com/), [Envoy](https://www.envoyproxy.io/), [NGINX](https://nginx.org/) or similar. diff --git a/apps/docs/content/guides/getting-started/tutorials/with-nextjs.mdx b/apps/docs/content/guides/getting-started/tutorials/with-nextjs.mdx index 50c6c67fd7f9a..5144851b5cfd4 100644 --- a/apps/docs/content/guides/getting-started/tutorials/with-nextjs.mdx +++ b/apps/docs/content/guides/getting-started/tutorials/with-nextjs.mdx @@ -180,7 +180,7 @@ meta="name=app/error/page.tsx" ### Email template -Before proceeding, change the email template to support support a server-side authentication flow that sends a token hash: +Before proceeding, change the email template to support a server-side authentication flow that sends a token hash: - Go to the [Auth templates](/dashboard/project/_/auth/templates) page in your dashboard. - Select the **Confirm signup** template. diff --git a/apps/docs/content/guides/security/product-security.mdx b/apps/docs/content/guides/security/product-security.mdx index 57e5efbc10cab..08600a1d2900a 100644 --- a/apps/docs/content/guides/security/product-security.mdx +++ b/apps/docs/content/guides/security/product-security.mdx @@ -19,8 +19,7 @@ Various products at Supabase have their own hardening and configuration guides, - [Row Level Security](/docs/guides/database/postgres/row-level-security) - [Column Level Security](/docs/guides/database/postgres/column-level-security) -- [Data API](/docs/guides/database/data-api) -- [Additional security controls for the Data API](/docs/guides/api/securing-your-api) +- [Securing your API](/docs/guides/api/securing-your-api) - [Custom claims and role based access control](/docs/guides/api/custom-claims-and-role-based-access-control-rbac) - [Managing Postgres roles](/docs/guides/database/postgres/roles) - [Managing secrets with Vault](/docs/guides/database/vault) diff --git a/apps/docs/content/guides/self-hosting/self-hosted-auth-keys.mdx b/apps/docs/content/guides/self-hosting/self-hosted-auth-keys.mdx index 7615ca4680423..e8510944c77d1 100644 --- a/apps/docs/content/guides/self-hosting/self-hosted-auth-keys.mdx +++ b/apps/docs/content/guides/self-hosting/self-hosted-auth-keys.mdx @@ -4,7 +4,7 @@ description: 'Configure new API keys and ES256 asymmetric authentication for sel subtitle: 'Configure new API keys and ES256 asymmetric authentication for self-hosted Supabase.' --- -You can configure self-hosted Supabase to use the [new API keys](/docs/guides/api/api-keys) alongside the legacy API keys (`ANON_KEY` and `SERVICE_ROLE_KEY` HS256-signed JWTs). +You can configure self-hosted Supabase to use the [new API keys](/docs/guides/getting-started/api-keys) alongside the legacy API keys (`ANON_KEY` and `SERVICE_ROLE_KEY` HS256-signed JWTs). ## Before you begin @@ -71,7 +71,7 @@ docker compose down && docker compose up -d ### New API keys format -The new API keys use the [same format](/docs/guides/api/api-keys) as the Supabase platform: +The new API keys use the [same format](/docs/guides/getting-started/api-keys) as the Supabase platform: ``` sb_publishable_<22-char-random>_<8-char-checksum> @@ -267,7 +267,7 @@ end ## Additional resources -- [Understanding API keys](/docs/guides/api/api-keys) - How API keys work on the Supabase platform +- [Understanding API keys](/docs/guides/getting-started/api-keys) - How API keys work on the Supabase platform - [Auth architecture](/docs/guides/auth/architecture) - How the Auth service handles authentication and token signing - [JWT Signing Keys](/docs/guides/auth/signing-keys) - Best practices on managing keys used by Supabase Auth to create and verify JSON Web Tokens - [JSON Web Token (JWT)](/docs/guides/auth/jwts) - How to best use JSON Web Tokens with Supabase diff --git a/apps/docs/content/troubleshooting/database-api-42501-errors.mdx b/apps/docs/content/troubleshooting/database-api-42501-errors.mdx index 0e0f30b35cf49..d128a896b5a11 100644 --- a/apps/docs/content/troubleshooting/database-api-42501-errors.mdx +++ b/apps/docs/content/troubleshooting/database-api-42501-errors.mdx @@ -75,7 +75,7 @@ grant select, insert, update, delete on table public.your_table to anon, authent Granting privileges allows access to your table through the Data API, so you should ensure you [enable RLS](/docs/guides/database/postgres/row-level-security) and write appropriate policies to protect your data. -For more information, see [Data API](/docs/guides/database/data-api). +For more information, see [Securing your API](/docs/guides/api/securing-your-api). diff --git a/apps/docs/content/troubleshooting/rotating-anon-service-and-jwt-secrets-1Jq6yd.mdx b/apps/docs/content/troubleshooting/rotating-anon-service-and-jwt-secrets-1Jq6yd.mdx index 297ca4c355d64..71d8384c1a6ca 100644 --- a/apps/docs/content/troubleshooting/rotating-anon-service-and-jwt-secrets-1Jq6yd.mdx +++ b/apps/docs/content/troubleshooting/rotating-anon-service-and-jwt-secrets-1Jq6yd.mdx @@ -9,7 +9,7 @@ database_id = "caa72a34-696c-47c6-8976-e50cf7fb396e" -This troubleshooting guide is about rotating **Legacy anon, service_role API keys**. We are deprecating Legacy, and recommend migrating to New API keys. To learn more about API keys, refer to [the API documentation](/docs/guides/api/api-keys). +This troubleshooting guide is about rotating **Legacy anon, service_role API keys**. We are deprecating Legacy, and recommend migrating to New API keys. To learn more about API keys, refer to [the API documentation](/docs/guides/getting-started/api-keys). @@ -42,5 +42,5 @@ If you have migrated to new symmetric JWT signing keys: ## Further readings -- [What to do if a secret key or service_role has been leaked or compromised?](/docs/guides/api/api-keys#what-to-do-if-a-secret-key-or-servicerole-has-been-leaked-or-compromised) +- [What to do if a secret key or service_role has been leaked or compromised?](/docs/guides/getting-started/api-keys#what-to-do-if-a-secret-key-or-servicerole-has-been-leaked-or-compromised) - [JWT Signing Keys](/docs/guides/auth/signing-keys) diff --git a/apps/docs/content/troubleshooting/using-google-smtp-with-supabase-custom-smtp-ZZzU4Y.mdx b/apps/docs/content/troubleshooting/using-google-smtp-with-supabase-custom-smtp-ZZzU4Y.mdx index 588b6ff1510dc..a748c116195a2 100644 --- a/apps/docs/content/troubleshooting/using-google-smtp-with-supabase-custom-smtp-ZZzU4Y.mdx +++ b/apps/docs/content/troubleshooting/using-google-smtp-with-supabase-custom-smtp-ZZzU4Y.mdx @@ -10,7 +10,7 @@ database_id = "4d5390a0-445d-4e0a-ae7e-9b713b7cc4f6" Hey everyone, i've been hearing feedback about how challenging it can be to get google SMTP working properly with Supabase. I've tried setting this up with a trial google workspace account and this is what i've discovered. 1. The sender email and SMTP username has to be your google workspace admin email. -2. The SMTP password used has to be an app password. Google workspace doesn't make it easy to to figure out how to create this. You need to **enable 2FA** on your workspace account first (not inside the admin console but in https://myaccount.google.com/) +2. The SMTP password used has to be an app password. Google workspace doesn't make it easy to figure out how to create this. You need to **enable 2FA** on your workspace account first (not inside the admin console but in https://myaccount.google.com/) 3. If you want to use `smtp-relay.gmail.com` only port 465 works. If you want to use `smtp.gmail.com`, you can use port 465 or 587. The following screenshots show what those steps look like: diff --git a/apps/docs/content/troubleshooting/why-is-my-service-role-key-client-getting-rls-errors-or-not-returning-data-7_1K9z.mdx b/apps/docs/content/troubleshooting/why-is-my-service-role-key-client-getting-rls-errors-or-not-returning-data-7_1K9z.mdx index 56089695b6a3d..3bf968d6cd020 100644 --- a/apps/docs/content/troubleshooting/why-is-my-service-role-key-client-getting-rls-errors-or-not-returning-data-7_1K9z.mdx +++ b/apps/docs/content/troubleshooting/why-is-my-service-role-key-client-getting-rls-errors-or-not-returning-data-7_1K9z.mdx @@ -10,7 +10,7 @@ database_id = "677f0a69-e454-4718-ad92-91053d40c085" This troubleshooting guide is about rotating **Legacy anon, service_role API keys**. We are deprecating the Legacy API keys, and recommend migrating to New API keys. To learn more about API -keys, refer to [the API documentation](/docs/guides/api/api-keys). +keys, refer to [the API documentation](/docs/guides/getting-started/api-keys). @@ -22,6 +22,6 @@ Three common cases of the `createClient` `apikey` being replaced by a user sessi 2. Edge functions or other server code setting the `Authorization` header in `createClient` options directly to a user token/JWT. When you set the `Authorization` header directly that overrides the default action of using the `apikey` for the `Authorization` header. -3. Server client initialized with service role using `signUp` to create a user or other auth functions. Many auth functions will return a user session to the client making the call. When that happens the `apikey` will be replaced by the user token/JWT in the `Authorization` header. If you are wanting to create a user in a service role client use `admin.createUser()` instead. Otherwise use a separate Supabase client for for service role from other actions. +3. Server client initialized with service role using `signUp` to create a user or other auth functions. Many auth functions will return a user session to the client making the call. When that happens the `apikey` will be replaced by the user token/JWT in the `Authorization` header. If you are wanting to create a user in a service role client use `admin.createUser()` instead. Otherwise use a separate Supabase client for service role from other actions. Also note that adding `service_role` in RLS policies does nothing. Service role will never run the policies to begin with. 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 d55bf9a72e2c6..5bbdf61635131 100644 --- a/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap +++ b/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap @@ -39745,22 +39745,22 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } }, "comment": { - "shortText": "Inside a browser context, \`signOut()\` will remove the logged in user from the browser session and log them out - removing all items from localstorage and then trigger a \`\\"SIGNED_OUT\\"\` event.\\n\\nFor server-side management, you can revoke all refresh tokens for a user by passing a user's JWT through to \`auth.api.signOut(JWT: string)\`.\\nThere is no way to revoke a user's access token jwt until it expires. It is recommended to set a shorter expiry on the jwt for this reason.\\n\\nIf using \`others\` scope, no \`SIGNED_OUT\` event is fired!", - "text": "- In order to use the \`signOut()\` method, the user needs to be signed in first.\\n- By default, \`signOut()\` uses the global scope, which signs out all other sessions that the user is logged into as well. Customize this behavior by passing a scope parameter.\\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires.", + "shortText": "Inside a browser context, \`signOut()\` will remove the logged in user from the browser session and log them out - removing all items from localstorage and then trigger a \`\\"SIGNED_OUT\\"\` event.\\n\\nFor server-side management, you can revoke all refresh tokens for a user by passing a user's JWT through to \`auth.api.signOut(JWT: string)\`.\\nThere is no way to revoke a user's access token jwt until it expires. It is recommended to set a shorter expiry on the jwt for this reason.\\n\\nIf using \`others\` scope, no \`SIGNED_OUT\` event is fired!\\n\\n**Warning:** the default \`scope\` is \`'global'\`. This signs the user out of\\n**every device they are currently signed in on**, not just the current\\ntab/session. If you only want to sign the user out of the current session\\n(the behavior most other auth libraries default to), pass\\n\`{ scope: 'local' }\` explicitly.", + "text": "- In order to use the \`signOut()\` method, the user needs to be signed in first.\\n- By default, \`signOut()\` uses the **global** scope, which signs out the user\\n on every device they are signed in on (not just the current one). Pass\\n \`{ scope: 'local' }\` to only sign out the current session. This is\\n usually what apps want on a \\"Sign out\\" button, especially when users\\n sign in from multiple devices and do not expect signing out of one to\\n terminate the others.\\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires.", "examples": [ { - "id": "sign-out-all-sessions", - "name": "Sign out (all sessions)", + "id": "sign-out-of-every-device-global-default", + "name": "Sign out of every device (global – default)", "code": "\`\`\`js\\nconst { error } = await supabase.auth.signOut()\\n\`\`\`" }, { - "id": "sign-out-current-session", - "name": "Sign out (current session)", + "id": "sign-out-only-the-current-session-recommended-for-most-apps", + "name": "Sign out only the current session (recommended for most apps)", "code": "\`\`\`js\\nconst { error } = await supabase.auth.signOut({ scope: 'local' })\\n\`\`\`" }, { - "id": "sign-out-other-sessions", - "name": "Sign out (other sessions)", + "id": "sign-out-of-all-other-sessions-keep-the-current-one", + "name": "Sign out of all other sessions, keep the current one", "code": "\`\`\`js\\nconst { error } = await supabase.auth.signOut({ scope: 'others' })\\n\`\`\`" } ] @@ -45602,12 +45602,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } } ], - "ret": { - "type": { - "type": "nameOnly", - "name": "PostgrestFilterBuilder" - } - }, "altSignatures": [ { "params": [ @@ -89878,22 +89872,22 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } }, "comment": { - "shortText": "Inside a browser context, \`signOut()\` will remove the logged in user from the browser session and log them out - removing all items from localstorage and then trigger a \`\\"SIGNED_OUT\\"\` event.\\n\\nFor server-side management, you can revoke all refresh tokens for a user by passing a user's JWT through to \`auth.api.signOut(JWT: string)\`.\\nThere is no way to revoke a user's access token jwt until it expires. It is recommended to set a shorter expiry on the jwt for this reason.\\n\\nIf using \`others\` scope, no \`SIGNED_OUT\` event is fired!", - "text": "- In order to use the \`signOut()\` method, the user needs to be signed in first.\\n- By default, \`signOut()\` uses the global scope, which signs out all other sessions that the user is logged into as well. Customize this behavior by passing a scope parameter.\\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires.", + "shortText": "Inside a browser context, \`signOut()\` will remove the logged in user from the browser session and log them out - removing all items from localstorage and then trigger a \`\\"SIGNED_OUT\\"\` event.\\n\\nFor server-side management, you can revoke all refresh tokens for a user by passing a user's JWT through to \`auth.api.signOut(JWT: string)\`.\\nThere is no way to revoke a user's access token jwt until it expires. It is recommended to set a shorter expiry on the jwt for this reason.\\n\\nIf using \`others\` scope, no \`SIGNED_OUT\` event is fired!\\n\\n**Warning:** the default \`scope\` is \`'global'\`. This signs the user out of\\n**every device they are currently signed in on**, not just the current\\ntab/session. If you only want to sign the user out of the current session\\n(the behavior most other auth libraries default to), pass\\n\`{ scope: 'local' }\` explicitly.", + "text": "- In order to use the \`signOut()\` method, the user needs to be signed in first.\\n- By default, \`signOut()\` uses the **global** scope, which signs out the user\\n on every device they are signed in on (not just the current one). Pass\\n \`{ scope: 'local' }\` to only sign out the current session. This is\\n usually what apps want on a \\"Sign out\\" button, especially when users\\n sign in from multiple devices and do not expect signing out of one to\\n terminate the others.\\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires.", "examples": [ { - "id": "sign-out-all-sessions", - "name": "Sign out (all sessions)", + "id": "sign-out-of-every-device-global-default", + "name": "Sign out of every device (global – default)", "code": "\`\`\`js\\nconst { error } = await supabase.auth.signOut()\\n\`\`\`" }, { - "id": "sign-out-current-session", - "name": "Sign out (current session)", + "id": "sign-out-only-the-current-session-recommended-for-most-apps", + "name": "Sign out only the current session (recommended for most apps)", "code": "\`\`\`js\\nconst { error } = await supabase.auth.signOut({ scope: 'local' })\\n\`\`\`" }, { - "id": "sign-out-other-sessions", - "name": "Sign out (other sessions)", + "id": "sign-out-of-all-other-sessions-keep-the-current-one", + "name": "Sign out of all other sessions, keep the current one", "code": "\`\`\`js\\nconst { error } = await supabase.auth.signOut({ scope: 'others' })\\n\`\`\`" } ] @@ -96315,12 +96309,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } } ], - "ret": { - "type": { - "type": "nameOnly", - "name": "PostgrestFilterBuilder" - } - }, "comment": { "shortText": "Match only rows which doesn't satisfy the filter.\\n\\nUnlike most filters, \`opearator\` and \`value\` are used as-is and need to\\nfollow [PostgREST\\nsyntax](https://postgrest.org/en/stable/api.html#operators). You also need\\nto make sure they are properly sanitized.", "text": "not() expects you to use the raw PostgREST syntax for the filter values.\\n\\n\`\`\`ts\\n.not('id', 'in', '(5,6,7)') // Use \`()\` for \`in\` filter\\n.not('arraycol', 'cs', '{\\"a\\",\\"b\\"}') // Use \`cs\` for \`contains()\`, \`{}\` for array values\\n\`\`\`", @@ -110072,7 +110060,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "Optional file upload options including cacheControl, contentType, upsert, and metadata." + "shortText": "Optional file upload options including cacheControl, contentType, and metadata.\\n**Note:** The \`upsert\` option has no effect here. \`update()\` always replaces the\\nfile at the given path, so the \`x-upsert\` header is not sent. To control upsert\\nbehavior, use \`upload()\` instead." } } ], @@ -110149,12 +110137,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "comment": { "shortText": "Replaces an existing file at the specified path with a new one.", - "text": "- RLS policy permissions required:\\n - \`buckets\` table permissions: none\\n - \`objects\` table permissions: \`update\` and \`select\`\\n- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works\\n- For React Native, using either \`Blob\`, \`File\` or \`FormData\` does not work as intended. Update file using \`ArrayBuffer\` from base64 file data instead, see example below.", + "text": "- RLS policy permissions required:\\n - \`buckets\` table permissions: none\\n - \`objects\` table permissions: \`update\` and \`select\`\\n- \`update()\` always replaces the file at the given path regardless of the \`upsert\` option.\\n- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works\\n- For React Native, using either \`Blob\`, \`File\` or \`FormData\` does not work as intended. Update file using \`ArrayBuffer\` from base64 file data instead, see example below.", "examples": [ { "id": "update-file", "name": "Update file", - "code": "\`\`\`js\\nconst avatarFile = event.target.files[0]\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .update('public/avatar1.png', avatarFile, {\\n cacheControl: '3600',\\n upsert: true\\n })\\n\`\`\`", + "code": "\`\`\`js\\nconst avatarFile = event.target.files[0]\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .update('public/avatar1.png', avatarFile, {\\n cacheControl: '3600'\\n })\\n\`\`\`", "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"path\\": \\"public/avatar1.png\\",\\n \\"fullPath\\": \\"avatars/public/avatar1.png\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`" }, { diff --git a/apps/docs/public/humans.txt b/apps/docs/public/humans.txt index 72394ec58c4c1..946626593e7a4 100644 --- a/apps/docs/public/humans.txt +++ b/apps/docs/public/humans.txt @@ -187,6 +187,7 @@ Nicolas Nosenzo Nyannyacha Oli R Pamela Chia +Patricia Szasz Patrick Crane Paul Caselton Paul Cioanca @@ -209,6 +210,7 @@ Roman Hernandez Ronan Lehane Rory Wilding Ryan Goulet +Ryan Senior Ruan Maia Saba Pochkhua Sam Meech-Ward diff --git a/apps/docs/spec/enrichments/tsdoc_v2/combined.json b/apps/docs/spec/enrichments/tsdoc_v2/combined.json index d43b2478ec792..9473cde3ef842 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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/cors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/cors.ts#L54" } ], "type": { @@ -110,7 +110,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 78, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/cors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/cors.ts#L78" } ], "type": { @@ -137,7 +137,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/cors.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/cors.ts#L1" } ] }, @@ -13276,7 +13276,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1927, + "line": 1938, "character": 14 } ], @@ -13290,7 +13290,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1927, + "line": 1938, "character": 14 } ], @@ -13336,7 +13336,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1928, + "line": 1939, "character": 8 } ], @@ -13366,7 +13366,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1927, + "line": 1938, "character": 53 } ] @@ -13633,7 +13633,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2382, + "line": 2393, "character": 4 } ], @@ -13740,7 +13740,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2382, + "line": 2393, "character": 4 } ], @@ -13835,7 +13835,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2388, + "line": 2399, "character": 8 } ], @@ -13863,7 +13863,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2390, + "line": 2401, "character": 8 } ], @@ -13885,7 +13885,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2391, + "line": 2402, "character": 12 } ], @@ -13909,7 +13909,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2390, + "line": 2401, "character": 15 } ] @@ -13941,7 +13941,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2386, + "line": 2397, "character": 8 } ], @@ -13965,7 +13965,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2382, + "line": 2393, "character": 38 } ] @@ -14001,7 +14001,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2394, + "line": 2405, "character": 8 } ], @@ -14023,7 +14023,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2395, + "line": 2406, "character": 12 } ], @@ -14043,7 +14043,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2396, + "line": 2407, "character": 12 } ], @@ -14063,7 +14063,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2397, + "line": 2408, "character": 12 } ], @@ -14087,7 +14087,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2394, + "line": 2405, "character": 14 } ] @@ -14103,7 +14103,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2399, + "line": 2410, "character": 8 } ], @@ -14122,7 +14122,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2404, "character": 16 } ] @@ -14146,7 +14146,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2401, + "line": 2412, "character": 8 } ], @@ -14164,7 +14164,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2402, + "line": 2413, "character": 8 } ], @@ -14185,7 +14185,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2400, + "line": 2411, "character": 8 } ] @@ -14209,7 +14209,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2404, + "line": 2415, "character": 8 } ], @@ -14227,7 +14227,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2405, + "line": 2416, "character": 8 } ], @@ -14246,7 +14246,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2403, + "line": 2414, "character": 8 } ] @@ -14875,7 +14875,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2076, + "line": 2087, "character": 4 } ], @@ -14948,7 +14948,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2076, + "line": 2087, "character": 4 } ], @@ -14980,7 +14980,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2077, + "line": 2088, "character": 8 } ], @@ -15002,7 +15002,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2078, + "line": 2089, "character": 12 } ], @@ -15026,7 +15026,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2077, + "line": 2088, "character": 14 } ] @@ -15042,7 +15042,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2080, + "line": 2091, "character": 8 } ], @@ -15061,7 +15061,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2076, + "line": 2087, "character": 33 } ] @@ -15085,7 +15085,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2082, + "line": 2093, "character": 8 } ], @@ -15103,7 +15103,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2083, + "line": 2094, "character": 8 } ], @@ -15124,7 +15124,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2081, + "line": 2092, "character": 8 } ] @@ -15256,12 +15256,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2089, + "line": 2100, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2093, + "line": 2104, "character": 4 } ], @@ -15283,7 +15283,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2089, + "line": 2100, "character": 4 } ], @@ -15337,7 +15337,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2093, + "line": 2104, "character": 4 } ], @@ -15385,12 +15385,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 4 } ], @@ -15412,7 +15412,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 4 } ], @@ -15442,7 +15442,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 32 } ], @@ -15456,7 +15456,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 32 } ], @@ -15525,7 +15525,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1937, + "line": 1948, "character": 8 } ], @@ -15547,7 +15547,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1949, "character": 12 } ], @@ -15568,7 +15568,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1937, + "line": 1948, "character": 14 } ] @@ -15585,7 +15585,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 92 } ] @@ -15628,7 +15628,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 4 } ], @@ -15658,7 +15658,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 32 } ], @@ -15672,7 +15672,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 32 } ], @@ -15752,7 +15752,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1954, + "line": 1965, "character": 8 } ], @@ -15774,7 +15774,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1955, + "line": 1966, "character": 12 } ], @@ -15795,7 +15795,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1954, + "line": 1965, "character": 14 } ] @@ -15812,7 +15812,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 101 } ] @@ -16118,7 +16118,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2424, + "line": 2435, "character": 4 } ], @@ -16148,7 +16148,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2424, + "line": 2435, "character": 4 } ], @@ -16396,7 +16396,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2026, + "line": 2037, "character": 4 } ], @@ -16523,7 +16523,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2026, + "line": 2037, "character": 4 } ], @@ -16583,7 +16583,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2028, + "line": 2039, "character": 8 } ], @@ -16611,7 +16611,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2027, + "line": 2038, "character": 8 } ], @@ -16630,7 +16630,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2026, + "line": 2037, "character": 51 } ] @@ -16666,7 +16666,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2030, + "line": 2041, "character": 8 } ], @@ -16690,7 +16690,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2031, + "line": 2042, "character": 8 } ], @@ -16709,7 +16709,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2029, + "line": 2040, "character": 16 } ] @@ -16733,7 +16733,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2033, + "line": 2044, "character": 8 } ], @@ -16751,7 +16751,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2034, + "line": 2045, "character": 8 } ], @@ -16772,7 +16772,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2032, + "line": 2043, "character": 8 } ] @@ -17707,7 +17707,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2415, + "line": 2426, "character": 4 } ], @@ -17737,7 +17737,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2415, + "line": 2426, "character": 4 } ], @@ -18416,7 +18416,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1924, + "line": 1935, "character": 4 } ], @@ -18471,7 +18471,31 @@ }, { "kind": "text", - "text": " event is fired!" + "text": " event is fired!\n\n**Warning:** the default " + }, + { + "kind": "code", + "text": "`scope`" + }, + { + "kind": "text", + "text": " is " + }, + { + "kind": "code", + "text": "`'global'`" + }, + { + "kind": "text", + "text": ". This signs the user out of\n**every device they are currently signed in on**, not just the current\ntab/session. If you only want to sign the user out of the current session\n(the behavior most other auth libraries default to), pass\n" + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " explicitly." } ], "blockTags": [ @@ -18505,13 +18529,21 @@ }, { "kind": "text", - "text": " uses the global scope, which signs out all other sessions that the user is logged into as well. Customize this behavior by passing a scope parameter.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." + "text": " uses the **global** scope, which signs out the user\n on every device they are signed in on (not just the current one). Pass\n " + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " to only sign out the current session. This is\n usually what apps want on a \"Sign out\" button, especially when users\n sign in from multiple devices and do not expect signing out of one to\n terminate the others.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." } ] }, { "tag": "@example", - "name": "Sign out (all sessions)", + "name": "Sign out of every device (global – default)", "content": [ { "kind": "code", @@ -18521,7 +18553,7 @@ }, { "tag": "@example", - "name": "Sign out (current session)", + "name": "Sign out only the current session (recommended for most apps)", "content": [ { "kind": "code", @@ -18531,7 +18563,7 @@ }, { "tag": "@example", - "name": "Sign out (other sessions)", + "name": "Sign out of all other sessions, keep the current one", "content": [ { "kind": "code", @@ -18544,7 +18576,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1924, + "line": 1935, "character": 4 } ], @@ -18590,7 +18622,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1925, + "line": 1936, "character": 8 } ], @@ -18620,7 +18652,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1924, + "line": 1935, "character": 40 } ] @@ -18895,7 +18927,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2209, + "line": 2220, "character": 4 } ], @@ -18970,7 +19002,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2209, + "line": 2220, "character": 4 } ], @@ -19001,7 +19033,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2240, + "line": 2251, "character": 4 } ], @@ -19062,7 +19094,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2240, + "line": 2251, "character": 4 } ], @@ -19093,7 +19125,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2121, + "line": 2132, "character": 4 } ], @@ -19153,7 +19185,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2121, + "line": 2132, "character": 4 } ], @@ -19200,7 +19232,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2122, + "line": 2133, "character": 8 } ], @@ -19224,7 +19256,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2123, + "line": 2134, "character": 8 } ], @@ -19243,7 +19275,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2121, + "line": 2132, "character": 52 } ] @@ -19267,7 +19299,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2125, + "line": 2136, "character": 8 } ], @@ -19285,7 +19317,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2126, + "line": 2137, "character": 8 } ], @@ -19306,7 +19338,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2124, + "line": 2135, "character": 8 } ] @@ -29962,58 +29994,136 @@ } ], "type": { - "type": "reference", - "target": 141, - "typeArguments": [ - { - "type": "reference", - "target": 144, - "name": "ClientOptions", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.ClientOptions", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 145, - "name": "Schema", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Schema", - "refersToTypeParameter": true - }, + "type": "intersection", + "types": [ { "type": "reference", - "target": { - "sourceFileName": "../postgrest-js/src/PostgrestError.ts", - "qualifiedName": "NonNullableColumn" - }, + "target": 141, "typeArguments": [ { "type": "reference", - "target": 146, - "name": "Row", + "target": 144, + "name": "ClientOptions", "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Row", + "qualifiedName": "PostgrestFilterBuilder.ClientOptions", "refersToTypeParameter": true }, { "type": "reference", - "target": 390, - "name": "ColumnName", + "target": 145, + "name": "Schema", "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": { + "sourceFileName": "../postgrest-js/src/PostgrestError.ts", + "qualifiedName": "NonNullableColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 146, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 390, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NonNullableColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../postgrest-js/src/PostgrestError.ts", + "qualifiedName": "NarrowResultColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 147, + "name": "Result$1", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Result$1", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 390, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NarrowResultColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": 148, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 149, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 150, + "name": "Method", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Method", "refersToTypeParameter": true } ], - "name": "NonNullableColumn", + "name": "PostgrestFilterBuilder", "package": "@supabase/postgrest-js" }, { "type": "reference", - "target": { - "sourceFileName": "../postgrest-js/src/PostgrestError.ts", - "qualifiedName": "NarrowResultColumn" - }, + "target": 141, "typeArguments": [ + { + "type": "reference", + "target": 144, + "name": "ClientOptions", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.ClientOptions", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 145, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 146, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Row", + "refersToTypeParameter": true + }, { "type": "reference", "target": 147, @@ -30024,42 +30134,33 @@ }, { "type": "reference", - "target": 390, - "name": "ColumnName", + "target": 148, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 149, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 150, + "name": "Method", "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Method", "refersToTypeParameter": true } ], - "name": "NarrowResultColumn", + "name": "PostgrestFilterBuilder", "package": "@supabase/postgrest-js" - }, - { - "type": "reference", - "target": 148, - "name": "RelationName", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.RelationName", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 149, - "name": "Relationships", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Relationships", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 150, - "name": "Method", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Method", - "refersToTypeParameter": true } - ], - "name": "PostgrestFilterBuilder", - "package": "@supabase/postgrest-js" + ] } }, { @@ -55839,7 +55940,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L279" } ], "signatures": [ @@ -56117,7 +56218,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L279" } ], "typeParameters": [ @@ -56165,7 +56266,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ], "type": { @@ -56185,7 +56286,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ] } @@ -56535,7 +56636,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ], "type": { @@ -56555,7 +56656,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ] } @@ -56636,7 +56737,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -56659,7 +56760,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -56679,7 +56780,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -56697,7 +56798,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -56747,7 +56848,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ], "type": { @@ -56767,7 +56868,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ] } @@ -56803,7 +56904,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ], "type": { @@ -56823,7 +56924,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ] } @@ -56999,7 +57100,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "type": { @@ -57015,7 +57116,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "signatures": [ @@ -57030,7 +57131,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "type": { @@ -57081,7 +57182,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L73" } ], "type": { @@ -57107,7 +57208,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L81" } ], "type": { @@ -57134,7 +57235,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L87" } ], "type": { @@ -57156,7 +57257,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L86" } ], "type": { @@ -57385,7 +57486,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L83" } ], "type": { @@ -57411,7 +57512,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L90" } ], "type": { @@ -57445,7 +57546,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L74" } ], "type": { @@ -57469,7 +57570,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L80" } ], "type": { @@ -57495,7 +57596,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L84" } ], "type": { @@ -57553,7 +57654,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L78" } ], "type": { @@ -57579,7 +57680,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L85" } ], "type": { @@ -57600,7 +57701,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L82" } ], "type": { @@ -57634,7 +57735,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 281, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L281" } ], "type": { @@ -57663,7 +57764,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 280, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L280" } ], "type": { @@ -57682,7 +57783,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 365, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L365" } ], "getSignature": { @@ -57704,7 +57805,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 365, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L365" } ], "type": { @@ -57729,7 +57830,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L479" } ], "signatures": [ @@ -57752,7 +57853,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L479" } ], "parameters": [ @@ -57839,19 +57940,19 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L373" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L377" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 385, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L385" } ], "signatures": [ @@ -57866,7 +57967,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L373" } ], "typeParameters": [ @@ -57964,7 +58065,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L377" } ], "typeParameters": [ @@ -58064,7 +58165,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L493" } ], "signatures": [ @@ -58108,7 +58209,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L493" } ], "type": { @@ -58135,7 +58236,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L530" } ], "signatures": [ @@ -58188,7 +58289,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L530" } ], "type": { @@ -58236,7 +58337,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 513, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L513" } ], "signatures": [ @@ -58289,7 +58390,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 513, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L513" } ], "parameters": [ @@ -58358,7 +58459,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 432, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L432" } ], "signatures": [ @@ -58381,7 +58482,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 432, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L432" } ], "typeParameters": [ @@ -58607,7 +58708,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 446, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L446" } ], "type": { @@ -58657,7 +58758,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 445, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L445" } ], "type": { @@ -58702,7 +58803,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 444, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L444" } ], "type": { @@ -58722,7 +58823,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 443, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L443" } ] } @@ -58828,7 +58929,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L397" } ], "signatures": [ @@ -58851,7 +58952,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L397" } ], "typeParameters": [ @@ -59012,7 +59113,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 37, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L37" } ], "typeParameters": [ @@ -59092,7 +59193,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ], "type": { @@ -59112,7 +59213,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ] } @@ -59582,7 +59683,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ], "type": { @@ -59602,7 +59703,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ] } @@ -59683,7 +59784,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -59706,7 +59807,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -59726,7 +59827,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -59744,7 +59845,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -59784,7 +59885,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ], "type": { @@ -59804,7 +59905,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ] } @@ -59840,7 +59941,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ], "type": { @@ -59860,7 +59961,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ] } @@ -74391,7 +74492,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 180, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L180" } ], "typeParameters": [ @@ -82419,7 +82520,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 168, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L168" } ], "typeParameters": [ @@ -82467,7 +82568,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 168, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L168" } ], "type": { @@ -82487,7 +82588,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 168, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L168" } ] } @@ -82538,7 +82639,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 169, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L169" } ], "type": { @@ -82567,7 +82668,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 167, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L167" } ], "typeParameters": [ @@ -89692,7 +89793,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L28" } ], "typeParameters": [ @@ -89742,7 +89843,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 161, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L161" } ], "type": { @@ -89758,7 +89859,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 161, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L161" } ], "signatures": [ @@ -89810,7 +89911,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L61" } ], "type": { @@ -89843,7 +89944,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 65, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L65" } ], "type": { @@ -89872,7 +89973,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L115" } ], "type": { @@ -89925,7 +90026,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "type": { @@ -89948,7 +90049,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "signatures": [ @@ -89994,7 +90095,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "indexSignatures": [ @@ -90009,7 +90110,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "parameters": [ @@ -90068,7 +90169,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 133, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L133" } ], "type": { @@ -90109,7 +90210,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 111, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L111" } ], "type": { @@ -90151,7 +90252,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L121" } ], "type": { @@ -90192,7 +90293,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 73, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L73" } ], "type": { @@ -90221,7 +90322,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L99" } ], "type": { @@ -90262,7 +90363,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 69, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L69" } ], "type": { @@ -90291,7 +90392,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L126" } ], "type": { @@ -90333,7 +90434,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 107, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L107" } ], "type": { @@ -90367,7 +90468,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 61, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L61" } ] } @@ -90402,7 +90503,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L32" } ], "type": { @@ -90427,7 +90528,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L33" } ], "type": { @@ -90471,7 +90572,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L45" } ], "type": { @@ -90512,7 +90613,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 58, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L58" } ], "type": { @@ -90532,7 +90633,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L32" } ] } @@ -90551,7 +90652,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L140" } ], "type": { @@ -90592,7 +90693,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 144, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L144" } ], "type": { @@ -90626,7 +90727,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 148, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L148" } ], "type": { @@ -90661,7 +90762,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 140, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L140" } ] } @@ -90688,7 +90789,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L138" } ], "type": { @@ -90711,7 +90812,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L139" } ], "type": { @@ -90736,7 +90837,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L28" } ] } @@ -92442,7 +92543,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 46, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L46" } ], "signatures": [ @@ -92457,7 +92558,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 46, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L46" } ], "typeParameters": [ @@ -92505,7 +92606,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 50, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L50" } ], "type": { @@ -92525,7 +92626,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 50, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L50" } ] } @@ -93741,7 +93842,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L1" } ] } @@ -107324,7 +107425,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L67" } ], "signatures": [ @@ -107339,7 +107440,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L67" } ], "parameters": [ @@ -107435,7 +107536,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -107500,7 +107601,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L65" } ], "type": { @@ -107526,7 +107627,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -107543,7 +107644,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -107566,7 +107667,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -107618,7 +107719,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -107637,7 +107738,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -107656,7 +107757,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -107685,7 +107786,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -107723,7 +107824,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 64, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L64" } ], "extendedTypes": [ @@ -107772,7 +107873,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L28" } ], "signatures": [ @@ -107787,7 +107888,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L28" } ], "parameters": [ @@ -107876,7 +107977,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -107936,7 +108037,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -107964,7 +108065,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -107979,7 +108080,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -108002,7 +108103,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -108054,7 +108155,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -108073,7 +108174,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -108092,7 +108193,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -108121,7 +108222,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -108149,7 +108250,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 14, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -108218,7 +108319,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "signatures": [ @@ -108233,7 +108334,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "parameters": [ @@ -108281,7 +108382,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -108300,7 +108401,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -108320,7 +108421,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ] } @@ -108379,7 +108480,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -108436,7 +108537,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -108466,7 +108567,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -108485,7 +108586,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -108505,7 +108606,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ] } @@ -108527,7 +108628,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -108561,7 +108662,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -108585,7 +108686,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L196" } ], "signatures": [ @@ -108600,7 +108701,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L196" } ], "type": { @@ -108623,7 +108724,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 200, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L200" } ], "type": { @@ -108675,7 +108776,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -108705,7 +108806,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -108724,7 +108825,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -108744,7 +108845,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ] } @@ -108763,7 +108864,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 198, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L198" } ], "type": { @@ -108782,7 +108883,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 197, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L197" } ], "type": { @@ -108801,7 +108902,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 199, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L199" } ], "type": { @@ -108830,7 +108931,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L196" } ] } @@ -108868,7 +108969,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 189, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L189" } ], "extendedTypes": [ @@ -108917,7 +109018,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L171" } ], "signatures": [ @@ -108932,7 +109033,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L171" } ], "parameters": [ @@ -108997,7 +109098,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -109056,7 +109157,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -109090,7 +109191,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -109116,7 +109217,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -109133,7 +109234,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -109156,7 +109257,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -109208,7 +109309,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -109227,7 +109328,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -109246,7 +109347,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -109275,7 +109376,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -109313,7 +109414,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 170, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L170" } ], "extendedTypes": [ @@ -109362,7 +109463,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L356" } ], "signatures": [ @@ -109377,7 +109478,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L356" } ], "parameters": [ @@ -109442,7 +109543,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -109501,7 +109602,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -109535,7 +109636,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -109561,7 +109662,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -109578,7 +109679,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -109601,7 +109702,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -109653,7 +109754,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -109672,7 +109773,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -109691,7 +109792,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -109720,7 +109821,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -109758,7 +109859,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 355, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L355" } ], "extendedTypes": [ @@ -109807,7 +109908,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L155" } ], "signatures": [ @@ -109822,7 +109923,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L155" } ], "type": { @@ -109874,7 +109975,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -109933,7 +110034,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -109967,7 +110068,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -109993,7 +110094,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -110010,7 +110111,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -110033,7 +110134,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -110085,7 +110186,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -110104,7 +110205,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -110123,7 +110224,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -110152,7 +110253,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -110190,7 +110291,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 154, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L154" } ], "extendedTypes": [ @@ -110239,7 +110340,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L261" } ], "signatures": [ @@ -110254,7 +110355,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L261" } ], "type": { @@ -110306,7 +110407,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -110365,7 +110466,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -110399,7 +110500,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -110425,7 +110526,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -110442,7 +110543,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -110465,7 +110566,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -110517,7 +110618,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -110536,7 +110637,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -110555,7 +110656,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -110584,7 +110685,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -110622,7 +110723,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 260, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L260" } ], "extendedTypes": [ @@ -110671,7 +110772,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "signatures": [ @@ -110686,7 +110787,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "parameters": [ @@ -110734,7 +110835,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -110753,7 +110854,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -110773,7 +110874,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ] } @@ -110832,7 +110933,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -110889,7 +110990,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -110919,7 +111020,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -110938,7 +111039,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -110958,7 +111059,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ] } @@ -110980,7 +111081,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -111014,7 +111115,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -111038,7 +111139,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L234" } ], "signatures": [ @@ -111053,7 +111154,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L234" } ], "type": { @@ -111076,7 +111177,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 238, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L238" } ], "type": { @@ -111128,7 +111229,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -111158,7 +111259,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -111177,7 +111278,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -111197,7 +111298,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ] } @@ -111216,7 +111317,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 236, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L236" } ], "type": { @@ -111235,7 +111336,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L235" } ], "type": { @@ -111254,7 +111355,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 237, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L237" } ], "type": { @@ -111283,7 +111384,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L234" } ] } @@ -111321,7 +111422,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 226, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L226" } ], "extendedTypes": [ @@ -111370,7 +111471,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L291" } ], "signatures": [ @@ -111385,7 +111486,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L291" } ], "parameters": [ @@ -111461,7 +111562,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -111520,7 +111621,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -111554,7 +111655,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -111580,7 +111681,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -111597,7 +111698,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -111620,7 +111721,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -111672,7 +111773,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -111691,7 +111792,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -111710,7 +111811,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -111739,7 +111840,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -111777,7 +111878,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 290, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L290" } ], "extendedTypes": [ @@ -111826,7 +111927,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L135" } ], "signatures": [ @@ -111841,7 +111942,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L135" } ], "type": { @@ -111893,7 +111994,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -111952,7 +112053,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -111986,7 +112087,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -112012,7 +112113,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -112029,7 +112130,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -112052,7 +112153,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -112104,7 +112205,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -112123,7 +112224,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -112142,7 +112243,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -112171,7 +112272,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -112209,7 +112310,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 134, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L134" } ], "extendedTypes": [ @@ -112258,7 +112359,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L96" } ], "signatures": [ @@ -112273,7 +112374,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L96" } ], "parameters": [ @@ -112349,7 +112450,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -112406,7 +112507,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L94" } ], "type": { @@ -112435,7 +112536,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -112470,7 +112571,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -112487,7 +112588,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -112510,7 +112611,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -112562,7 +112663,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -112581,7 +112682,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -112600,7 +112701,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -112629,7 +112730,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -112667,7 +112768,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 93, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L93" } ], "extendedTypes": [ @@ -112716,7 +112817,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L321" } ], "signatures": [ @@ -112731,7 +112832,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L321" } ], "parameters": [ @@ -112834,7 +112935,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -112893,7 +112994,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -112925,7 +113026,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L319" } ], "type": { @@ -112970,7 +113071,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -112994,7 +113095,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 327, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L327" } ], "signatures": [ @@ -113009,7 +113110,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 327, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L327" } ], "type": { @@ -113032,7 +113133,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 331, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L331" } ], "type": { @@ -113084,7 +113185,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 329, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L329" } ], "type": { @@ -113103,7 +113204,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 328, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L328" } ], "type": { @@ -113122,7 +113223,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 332, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L332" } ], "type": { @@ -113157,7 +113258,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 330, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L330" } ], "type": { @@ -113186,7 +113287,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 327, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L327" } ] } @@ -113224,7 +113325,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 315, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L315" } ], "extendedTypes": [ @@ -113273,7 +113374,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L117" } ], "signatures": [ @@ -113288,7 +113389,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L117" } ], "parameters": [ @@ -113395,7 +113496,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -113452,7 +113553,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -113484,7 +113585,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -113510,7 +113611,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -113527,7 +113628,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -113550,7 +113651,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -113602,7 +113703,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -113621,7 +113722,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -113640,7 +113741,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -113669,7 +113770,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -113707,7 +113808,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 113, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L113" } ], "extendedTypes": [ @@ -113784,7 +113885,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "signatures": [ @@ -113829,7 +113930,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "parameters": [ @@ -113861,7 +113962,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 103, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L103" } ], "type": { @@ -113884,7 +113985,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 102, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L102" } ], "type": { @@ -114113,7 +114214,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "type": { @@ -114129,7 +114230,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 99, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "indexSignatures": [ @@ -114144,7 +114245,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" } ], "parameters": [ @@ -114181,7 +114282,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L98" } ], "type": { @@ -114202,7 +114303,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 97, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ] } @@ -114238,7 +114339,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" } ], "type": { @@ -114267,7 +114368,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -114296,7 +114397,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" } ], "type": { @@ -114333,7 +114434,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" } ], "type": { @@ -114354,7 +114455,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 481, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" } ], "signatures": [ @@ -114504,7 +114605,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 481, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" } ], "parameters": [ @@ -114553,7 +114654,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 831, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" } ], "signatures": [ @@ -114643,7 +114744,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 831, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" } ], "parameters": [ @@ -114726,7 +114827,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" } ], "signatures": [ @@ -114944,7 +115045,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" } ], "parameters": [ @@ -114993,7 +115094,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 622, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" } ], "signatures": [ @@ -115075,7 +115176,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 622, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" } ], "parameters": [ @@ -115138,7 +115239,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" } ], "signatures": [ @@ -115220,7 +115321,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" } ], "parameters": [ @@ -115295,7 +115396,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 234, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L234" } ], "type": { @@ -115324,7 +115425,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L237" } ], "type": { @@ -115344,7 +115445,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 232, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" } ] } @@ -115383,7 +115484,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 521, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" } ], "signatures": [ @@ -115454,7 +115555,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 521, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" } ], "parameters": [ @@ -115528,7 +115629,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -115554,7 +115655,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -115573,7 +115674,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -115598,7 +115699,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ] } @@ -115623,7 +115724,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -115643,7 +115744,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ] } @@ -115668,7 +115769,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ], "type": { @@ -115691,7 +115792,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ], "type": { @@ -115710,7 +115811,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ] } @@ -115727,7 +115828,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ], "type": { @@ -115749,7 +115850,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ] } @@ -115774,7 +115875,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" } ], "signatures": [ @@ -115808,7 +115909,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" } ], "parameters": [ @@ -115892,7 +115993,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 144, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" } ], "type": { @@ -115911,7 +116012,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 144, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" } ], "type": { @@ -115942,7 +116043,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 144, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" } ] } @@ -115965,7 +116066,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 782, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" } ], "signatures": [ @@ -116165,7 +116266,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 782, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" } ], "parameters": [ @@ -116268,7 +116369,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 44, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" } ] }, @@ -116290,7 +116391,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L341" } ], "signatures": [ @@ -116335,7 +116436,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L341" } ], "parameters": [ @@ -116382,7 +116483,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 226, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L226" } ], "type": { @@ -116412,7 +116513,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L230" } ], "type": { @@ -116441,7 +116542,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 236, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L236" } ], "type": { @@ -116478,7 +116579,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 243, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L243" } ], "type": { @@ -116499,7 +116600,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1405" } ], "signatures": [ @@ -116581,7 +116682,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1405" } ], "parameters": [ @@ -116626,9 +116727,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5857, + "line": 5868, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5857" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5868" } ], "signatures": [ @@ -116734,9 +116835,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5857, + "line": 5868, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5857" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5868" } ], "parameters": [ @@ -116828,9 +116929,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5866, + "line": 5877, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5866" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5877" } ], "type": { @@ -116857,9 +116958,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5869, + "line": 5880, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5869" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5880" } ], "type": { @@ -116880,9 +116981,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5869, + "line": 5880, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5869" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5880" } ], "type": { @@ -116905,9 +117006,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5869, + "line": 5880, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5869" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5880" } ] } @@ -116938,9 +117039,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5863, + "line": 5874, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5863" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5874" } ], "type": { @@ -116963,9 +117064,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5859, + "line": 5870, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5859" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5870" } ] } @@ -117001,9 +117102,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -117024,9 +117125,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -117045,9 +117146,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -117066,9 +117167,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -117091,9 +117192,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ] } @@ -117108,9 +117209,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5874, + "line": 5885, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5874" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5885" } ], "type": { @@ -117128,9 +117229,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5872, + "line": 5883, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5872" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5883" } ] } @@ -117153,9 +117254,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5876, + "line": 5887, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5887" } ], "type": { @@ -117172,9 +117273,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5876, + "line": 5887, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5887" } ], "type": { @@ -117194,9 +117295,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5876, + "line": 5887, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5887" } ] } @@ -117219,9 +117320,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 5888, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5888" } ], "type": { @@ -117238,9 +117339,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 5888, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5888" } ], "type": { @@ -117258,9 +117359,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 5888, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5888" } ] } @@ -117285,7 +117386,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2661, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2661" } ], "signatures": [ @@ -117408,7 +117509,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2661, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2661" } ], "type": { @@ -117441,7 +117542,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2754, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2754" } ], "type": { @@ -117464,7 +117565,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2755, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2755" } ], "type": { @@ -117486,7 +117587,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2754, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2754" } ] } @@ -117503,7 +117604,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2757, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2757" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2757" } ], "type": { @@ -117523,7 +117624,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2753, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2753" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2753" } ] } @@ -117548,7 +117649,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2760, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2760" } ], "type": { @@ -117571,7 +117672,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2761, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2761" } ], "type": { @@ -117591,7 +117692,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2760, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2760" } ] } @@ -117608,7 +117709,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2763, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2763" } ], "type": { @@ -117630,7 +117731,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2759, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2759" } ] } @@ -117655,7 +117756,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2766, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2766" } ], "type": { @@ -117678,7 +117779,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2767, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2767" } ], "type": { @@ -117698,7 +117799,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2766, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2766" } ] } @@ -117715,7 +117816,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2769, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2769" } ], "type": { @@ -117735,7 +117836,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2765, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2765" } ] } @@ -117760,7 +117861,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2972, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2972" } ], "signatures": [ @@ -117852,7 +117953,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2972, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2972" } ], "parameters": [ @@ -117907,9 +118008,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4230, + "line": 4241, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4241" } ], "signatures": [ @@ -117981,9 +118082,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4230, + "line": 4241, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4241" } ], "type": { @@ -118014,9 +118115,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4232, + "line": 4243, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4243" } ], "type": { @@ -118037,9 +118138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4233, + "line": 4244, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4244" } ], "type": { @@ -118062,9 +118163,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4232, + "line": 4243, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4243" } ] } @@ -118079,9 +118180,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4235, + "line": 4246, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4246" } ], "type": { @@ -118099,9 +118200,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4231, + "line": 4242, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4242" } ] } @@ -118124,9 +118225,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4237, + "line": 4248, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4248" } ], "type": { @@ -118143,9 +118244,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4237, + "line": 4248, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4248" } ], "type": { @@ -118165,9 +118266,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4237, + "line": 4248, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4248" } ] } @@ -118192,7 +118293,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 515, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L515" } ], "signatures": [ @@ -118226,7 +118327,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 515, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L515" } ], "type": { @@ -118262,7 +118363,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 477, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L477" } ], "signatures": [ @@ -118285,7 +118386,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 477, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L477" } ], "type": { @@ -118374,21 +118475,21 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4255, + "line": 4266, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4266" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4260, + "line": 4271, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4260" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4271" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4289, + "line": 4300, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4289" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4300" } ], "signatures": [ @@ -118409,9 +118510,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4255, + "line": 4266, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4266" } ], "parameters": [ @@ -118464,9 +118565,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4260, + "line": 4271, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4260" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4271" } ], "parameters": [ @@ -118803,21 +118904,21 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4026, + "line": 4037, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4026" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4037" } ], "signatures": [ @@ -118838,9 +118939,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ], "parameters": [ @@ -118869,9 +118970,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ], "signatures": [ @@ -118884,9 +118985,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ], "parameters": [ @@ -118954,9 +119055,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3820, + "line": 3831, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3831" } ], "type": { @@ -118977,9 +119078,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3820, + "line": 3831, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3831" } ], "type": { @@ -118999,9 +119100,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3820, + "line": 3831, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3831" } ] } @@ -119017,9 +119118,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 90, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ] } @@ -119061,9 +119162,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ], "parameters": [ @@ -119092,9 +119193,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ], "signatures": [ @@ -119107,9 +119208,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ], "parameters": [ @@ -119188,9 +119289,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3836, + "line": 3847, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3847" } ], "type": { @@ -119211,9 +119312,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3836, + "line": 3847, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3847" } ], "type": { @@ -119233,9 +119334,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3836, + "line": 3847, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3847" } ] } @@ -119251,9 +119352,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ] } @@ -119272,7 +119373,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2444, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2444" } ], "signatures": [ @@ -119358,7 +119459,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2444, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2444" } ], "type": { @@ -119392,7 +119493,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ], "signatures": [ @@ -119468,7 +119569,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ], "parameters": [ @@ -119508,7 +119609,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ], "type": { @@ -119528,7 +119629,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ] } @@ -119564,9 +119665,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6028, + "line": 6039, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L6028" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L6039" } ], "signatures": [ @@ -119595,9 +119696,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6028, + "line": 6039, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L6028" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L6039" } ], "parameters": [ @@ -119648,7 +119749,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2535, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2535" } ], "signatures": [ @@ -119799,7 +119900,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2535, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2535" } ], "parameters": [ @@ -119846,9 +119947,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4146, + "line": 4157, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4157" } ], "signatures": [ @@ -119974,9 +120075,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4146, + "line": 4157, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4157" } ], "parameters": [ @@ -120033,9 +120134,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4150, + "line": 4161, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4161" } ], "type": { @@ -120062,9 +120163,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4149, + "line": 4160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4149" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4160" } ], "type": { @@ -120082,9 +120183,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4148, + "line": 4159, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4159" } ] } @@ -120120,9 +120221,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4154, + "line": 4165, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4154" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4165" } ], "type": { @@ -120145,9 +120246,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4155, + "line": 4166, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4166" } ], "type": { @@ -120165,9 +120266,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4153, + "line": 4164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4164" } ] } @@ -120190,9 +120291,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4168, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4168" } ], "type": { @@ -120209,9 +120310,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4168, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4168" } ], "type": { @@ -120231,9 +120332,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4168" } ] } @@ -120258,7 +120359,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3339, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3339" } ], "signatures": [ @@ -120357,7 +120458,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3339, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3339" } ], "parameters": [ @@ -120395,7 +120496,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3340, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3340" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3340" } ], "type": { @@ -120414,7 +120515,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3341, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3341" } ], "type": { @@ -120434,7 +120535,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3339, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3339" } ] } @@ -120472,7 +120573,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L689" } ], "signatures": [ @@ -120565,7 +120666,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L689" } ], "parameters": [ @@ -120616,7 +120717,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1977, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1977" } ], "signatures": [ @@ -120682,7 +120783,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1977, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1977" } ], "parameters": [ @@ -120731,7 +120832,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1226" } ], "signatures": [ @@ -120899,7 +121000,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1226" } ], "parameters": [ @@ -120948,7 +121049,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2090, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2090" } ], "signatures": [ @@ -121133,7 +121234,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2090, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2090" } ], "parameters": [ @@ -121180,9 +121281,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5972, + "line": 5983, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5983" } ], "signatures": [ @@ -121211,9 +121312,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5972, + "line": 5983, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5983" } ], "parameters": [ @@ -121264,7 +121365,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1087, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1087" } ], "signatures": [ @@ -121340,7 +121441,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1087, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1087" } ], "parameters": [ @@ -121389,7 +121490,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2381" } ], "signatures": [ @@ -121468,7 +121569,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2381" } ], "parameters": [ @@ -121517,7 +121618,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1501, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1501" } ], "signatures": [ @@ -121609,7 +121710,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1501, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1501" } ], "parameters": [ @@ -121657,7 +121758,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ], "type": { @@ -121680,7 +121781,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ], "type": { @@ -121701,7 +121802,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ], "type": { @@ -121723,7 +121824,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ] } @@ -121740,7 +121841,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1504, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1504" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1504" } ], "type": { @@ -121760,7 +121861,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1502, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1502" } ] } @@ -121785,7 +121886,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -121808,7 +121909,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -121827,7 +121928,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -121847,7 +121948,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ] } @@ -121864,7 +121965,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -121886,7 +121987,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ] } @@ -121909,9 +122010,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ], "signatures": [ @@ -121965,7 +122066,31 @@ }, { "kind": "text", - "text": " event is fired!" + "text": " event is fired!\n\n**Warning:** the default " + }, + { + "kind": "code", + "text": "`scope`" + }, + { + "kind": "text", + "text": " is " + }, + { + "kind": "code", + "text": "`'global'`" + }, + { + "kind": "text", + "text": ". This signs the user out of\n**every device they are currently signed in on**, not just the current\ntab/session. If you only want to sign the user out of the current session\n(the behavior most other auth libraries default to), pass\n" + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " explicitly." } ], "blockTags": [ @@ -121999,13 +122124,21 @@ }, { "kind": "text", - "text": " uses the global scope, which signs out all other sessions that the user is logged into as well. Customize this behavior by passing a scope parameter.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." + "text": " uses the **global** scope, which signs out the user\n on every device they are signed in on (not just the current one). Pass\n " + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " to only sign out the current session. This is\n usually what apps want on a \"Sign out\" button, especially when users\n sign in from multiple devices and do not expect signing out of one to\n terminate the others.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." } ] }, { "tag": "@example", - "name": "Sign out (all sessions)", + "name": "Sign out of every device (global – default)", "content": [ { "kind": "code", @@ -122015,7 +122148,7 @@ }, { "tag": "@example", - "name": "Sign out (current session)", + "name": "Sign out only the current session (recommended for most apps)", "content": [ { "kind": "code", @@ -122025,7 +122158,7 @@ }, { "tag": "@example", - "name": "Sign out (other sessions)", + "name": "Sign out of all other sessions, keep the current one", "content": [ { "kind": "code", @@ -122038,9 +122171,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ], "parameters": [ @@ -122084,9 +122217,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ], "type": { @@ -122115,9 +122248,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ] } @@ -122140,7 +122273,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 899, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L899" } ], "signatures": [ @@ -122346,7 +122479,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 899, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L899" } ], "parameters": [ @@ -122393,9 +122526,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4930, + "line": 4941, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4941" } ], "signatures": [ @@ -122469,9 +122602,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4930, + "line": 4941, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4941" } ], "type": { @@ -122501,9 +122634,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4965, + "line": 4976, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4965" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4976" } ], "signatures": [ @@ -122563,9 +122696,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4965, + "line": 4976, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4965" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4976" } ], "type": { @@ -122595,9 +122728,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4409, + "line": 4420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4420" } ], "signatures": [ @@ -122656,9 +122789,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4409, + "line": 4420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4420" } ], "parameters": [ @@ -122704,9 +122837,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4411, + "line": 4422, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4411" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4422" } ], "type": { @@ -122729,9 +122862,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4412, + "line": 4423, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4412" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4423" } ], "type": { @@ -122749,9 +122882,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4410, + "line": 4421, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4410" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4421" } ] } @@ -122774,9 +122907,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4414, + "line": 4425, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4425" } ], "type": { @@ -122793,9 +122926,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4414, + "line": 4425, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4425" } ], "type": { @@ -122815,9 +122948,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4414, + "line": 4425, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4425" } ] } @@ -122842,7 +122975,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3148, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3148" } ], "signatures": [ @@ -123024,7 +123157,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3148, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3148" } ], "parameters": [ @@ -123069,7 +123202,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3151" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3151" } ], "type": { @@ -123089,7 +123222,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3150, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3150" } ] } @@ -123128,7 +123261,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2281" } ], "signatures": [ @@ -123302,7 +123435,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2281" } ], "parameters": [ @@ -123376,7 +123509,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 217, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L217" } ] }, @@ -123417,7 +123550,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L37" } ], "signatures": [ @@ -123432,7 +123565,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L37" } ], "parameters": [ @@ -123482,7 +123615,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 35, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L35" } ], "type": { @@ -123512,7 +123645,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 52, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L52" } ], "extendedTypes": [ @@ -123571,7 +123704,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 555, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L555" } ], "type": { @@ -123600,7 +123733,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 581, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L581" } ], "type": { @@ -123630,7 +123763,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L501" } ], "type": { @@ -123665,7 +123798,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L506" } ], "type": { @@ -123699,7 +123832,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 562, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L562" } ], "type": { @@ -123744,7 +123877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L606" } ], "type": { @@ -123774,7 +123907,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 523, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L523" } ], "type": { @@ -123809,7 +123942,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L516" } ], "type": { @@ -123851,7 +123984,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 599, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L599" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L599" } ], "type": { @@ -123881,7 +124014,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L511" } ], "type": { @@ -123915,7 +124048,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L569" } ], "type": { @@ -123976,7 +124109,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 590, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L590" } ], "type": { @@ -124021,7 +124154,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 545, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L545" } ], "type": { @@ -124041,7 +124174,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 534, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L534" } ], "extendedTypes": [ @@ -124119,7 +124252,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L380" } ], "type": { @@ -124148,7 +124281,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L386" } ], "type": { @@ -124168,7 +124301,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 378, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L378" } ] }, @@ -124198,7 +124331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2605" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2605" } ], "signatures": [ @@ -124241,7 +124374,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2605" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2605" } ], "parameters": [ @@ -124310,7 +124443,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2607, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2607" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2607" } ], "type": { @@ -124330,7 +124463,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2607, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2607" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2607" } ] } @@ -124368,7 +124501,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2624" } ], "signatures": [ @@ -124411,7 +124544,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2624" } ], "parameters": [ @@ -124480,7 +124613,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2626, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2626" } ], "type": { @@ -124500,7 +124633,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2626, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2626" } ] } @@ -124538,7 +124671,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2589, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2589" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2589" } ], "signatures": [ @@ -124601,7 +124734,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2589, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2589" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2589" } ], "parameters": [ @@ -124656,7 +124789,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2637" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2637" } ], "signatures": [ @@ -124699,7 +124832,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2637" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2637" } ], "type": { @@ -124733,7 +124866,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ], "signatures": [ @@ -124776,7 +124909,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ], "parameters": [ @@ -124822,7 +124955,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ], "type": { @@ -124842,7 +124975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ] } @@ -124887,7 +125020,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2565, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2565" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2565" } ] }, @@ -124925,7 +125058,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2798, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2798" } ], "signatures": [ @@ -124940,7 +125073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2798, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2798" } ], "parameters": [ @@ -124989,7 +125122,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2796, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2796" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2796" } ], "signatures": [ @@ -125004,7 +125137,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2796, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2796" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2796" } ], "type": { @@ -125038,7 +125171,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2788, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2788" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2788" } ], "signatures": [ @@ -125053,7 +125186,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2788, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2788" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2788" } ], "parameters": [ @@ -125104,7 +125237,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2782, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2782" } ], "signatures": [ @@ -125119,7 +125252,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2782, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2782" } ], "type": { @@ -125153,7 +125286,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2797, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2797" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2797" } ], "signatures": [ @@ -125168,7 +125301,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2797, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2797" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2797" } ], "parameters": [ @@ -125217,7 +125350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2791, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2791" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2791" } ], "signatures": [ @@ -125232,7 +125365,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2791, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2791" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2791" } ], "parameters": [ @@ -125281,7 +125414,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2783, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2783" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2783" } ], "signatures": [ @@ -125296,7 +125429,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2783, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2783" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2783" } ], "parameters": [ @@ -125346,7 +125479,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2780, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2780" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2780" } ] }, @@ -125394,7 +125527,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 958, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L958" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L958" } ], "type": { @@ -125423,7 +125556,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 960, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L960" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L960" } ], "type": { @@ -125443,7 +125576,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 952, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L952" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L952" } ] }, @@ -125473,7 +125606,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2408, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2408" } ], "signatures": [ @@ -125520,7 +125653,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2408, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2408" } ], "parameters": [ @@ -125569,7 +125702,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "signatures": [ @@ -125600,7 +125733,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "parameters": [ @@ -125643,7 +125776,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "type": { @@ -125662,7 +125795,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "type": { @@ -125693,7 +125826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ] } @@ -125716,7 +125849,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2415" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2415" } ], "signatures": [ @@ -125747,7 +125880,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2415" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2415" } ], "parameters": [ @@ -125794,7 +125927,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2395, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2395" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2395" } ], "signatures": [ @@ -125825,7 +125958,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2395, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2395" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2395" } ], "parameters": [ @@ -125876,7 +126009,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2427" } ], "signatures": [ @@ -125931,7 +126064,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2427" } ], "parameters": [ @@ -125992,7 +126125,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2389, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2389" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2389" } ] }, @@ -126028,7 +126161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1790, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1790" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1790" } ], "signatures": [ @@ -126100,7 +126233,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1790, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1790" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1790" } ], "parameters": [ @@ -126149,7 +126282,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1760, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1760" } ], "signatures": [ @@ -126206,7 +126339,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1760, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1760" } ], "parameters": [ @@ -126262,7 +126395,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1729, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1729" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1729" } ] }, @@ -126292,7 +126425,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2148" } ], "signatures": [ @@ -126334,7 +126467,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2148" } ], "parameters": [ @@ -126383,7 +126516,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "signatures": [ @@ -126425,7 +126558,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "parameters": [ @@ -126468,7 +126601,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "type": { @@ -126487,7 +126620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "type": { @@ -126518,7 +126651,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ] } @@ -126541,7 +126674,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2158" } ], "signatures": [ @@ -126583,7 +126716,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2158" } ], "parameters": [ @@ -126630,7 +126763,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2138" } ], "signatures": [ @@ -126672,7 +126805,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2138" } ], "parameters": [ @@ -126723,7 +126856,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2188" } ], "signatures": [ @@ -126765,7 +126898,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2188" } ], "parameters": [ @@ -126812,7 +126945,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2168, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2168" } ], "signatures": [ @@ -126854,7 +126987,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2168, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2168" } ], "parameters": [ @@ -126921,7 +127054,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2129, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2129" } ] }, @@ -126943,7 +127076,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2803, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2803" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2803" } ], "signatures": [ @@ -126958,7 +127091,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2803, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2803" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2803" } ], "parameters": [ @@ -127007,7 +127140,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2802, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2802" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2802" } ], "signatures": [ @@ -127022,7 +127155,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2802, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2802" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2802" } ], "parameters": [ @@ -127072,7 +127205,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2801, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2801" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2801" } ] }, @@ -127102,7 +127235,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1687, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1687" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1687" } ], "type": { @@ -127126,25 +127259,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1425" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1425" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1426" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1427" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1428" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1428" } ], "signatures": [ @@ -127272,7 +127405,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1425" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1425" } ], "parameters": [ @@ -127323,7 +127456,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -127342,7 +127475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -127364,7 +127497,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -127389,7 +127522,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -127413,7 +127546,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -127433,7 +127566,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -127456,7 +127589,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1426" } ], "parameters": [ @@ -127504,7 +127637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -127523,7 +127656,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -127545,7 +127678,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -127570,7 +127703,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -127594,7 +127727,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -127614,7 +127747,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -127637,7 +127770,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1427" } ], "parameters": [ @@ -127685,7 +127818,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -127704,7 +127837,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -127726,7 +127859,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -127751,7 +127884,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -127795,7 +127928,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -127815,7 +127948,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -127838,7 +127971,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1428" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1428" } ], "parameters": [ @@ -127887,7 +128020,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1617, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1617" } ], "signatures": [ @@ -127977,7 +128110,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1617, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1617" } ], "parameters": [ @@ -128029,25 +128162,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1352" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1353" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1354, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1354" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1354" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1355" } ], "signatures": [ @@ -128240,7 +128373,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1352" } ], "parameters": [ @@ -128287,7 +128420,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1353" } ], "parameters": [ @@ -128334,7 +128467,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1354, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1354" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1354" } ], "parameters": [ @@ -128384,7 +128517,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1355" } ], "parameters": [ @@ -128433,7 +128566,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1682" } ], "signatures": [ @@ -128581,7 +128714,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1682" } ], "parameters": [ @@ -128638,7 +128771,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1629" } ], "signatures": [ @@ -128719,7 +128852,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1629" } ], "type": { @@ -128776,7 +128909,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1536" } ], "signatures": [ @@ -128849,7 +128982,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1536" } ], "parameters": [ @@ -128898,25 +129031,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1508" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1509" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1510" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1510" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1511" } ], "signatures": [ @@ -128982,7 +129115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1508" } ], "parameters": [ @@ -129029,7 +129162,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1509" } ], "parameters": [ @@ -129076,7 +129209,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1510" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1510" } ], "parameters": [ @@ -129123,7 +129256,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1511" } ], "parameters": [ @@ -129187,7 +129320,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1271, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1271" } ] }, @@ -129211,7 +129344,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1988" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1988" } ], "type": { @@ -129230,7 +129363,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1987, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1987" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1987" } ], "type": { @@ -129254,7 +129387,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1989" } ], "type": { @@ -129273,7 +129406,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1986, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1986" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1986" } ], "type": { @@ -129306,7 +129439,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1985, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1985" } ], "indexSignatures": [ @@ -129321,7 +129454,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1990, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1990" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1990" } ], "parameters": [ @@ -129383,7 +129516,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1947" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -129419,7 +129552,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1976" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1976" } ], "type": { @@ -129457,7 +129590,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1968, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1968" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1968" } ], "type": { @@ -129480,7 +129613,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1943, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1943" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1943" } ], "type": { @@ -129518,7 +129651,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1961, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1961" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1961" } ], "type": { @@ -129539,7 +129672,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1944" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1944" } ], "type": { @@ -129565,7 +129698,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1945, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1945" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1945" } ], "type": { @@ -129591,7 +129724,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1963" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1963" } ], "type": { @@ -129612,7 +129745,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1941" } ], "type": { @@ -129638,7 +129771,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1966, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1966" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1966" } ], "type": { @@ -129659,7 +129792,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1967" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1967" } ], "type": { @@ -129680,7 +129813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1962, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1962" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1962" } ], "type": { @@ -129701,7 +129834,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1979, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1979" } ], "type": { @@ -129722,7 +129855,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1946" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -129748,7 +129881,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1948" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -129774,7 +129907,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1942" } ], "type": { @@ -129800,7 +129933,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1969, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1969" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1969" } ], "type": { @@ -129825,7 +129958,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1959, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1959" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1959" } ], "indexSignatures": [ @@ -129840,7 +129973,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1982, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1982" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1982" } ], "parameters": [ @@ -129897,7 +130030,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 328, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L328" } ], "type": { @@ -129926,7 +130059,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 340, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L340" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L340" } ], "type": { @@ -129953,7 +130086,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L336" } ], "type": { @@ -129982,7 +130115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 324, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L324" } ], "type": { @@ -130020,7 +130153,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L319" } ], "type": { @@ -130056,7 +130189,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L332" } ], "type": { @@ -130075,7 +130208,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L341" } ], "type": { @@ -130102,7 +130235,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 346, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L346" } ], "type": { @@ -130124,7 +130257,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 315, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L315" } ] }, @@ -130154,7 +130287,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L619" } ], "type": { @@ -130170,7 +130303,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 619, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L619" } ], "signatures": [ @@ -130185,7 +130318,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 619, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L619" } ], "parameters": [ @@ -130253,7 +130386,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 615, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L615" } ], "type": { @@ -130289,7 +130422,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 623, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L623" } ], "type": { @@ -130305,7 +130438,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 623, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L623" } ], "signatures": [ @@ -130320,7 +130453,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 623, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L623" } ], "type": { @@ -130344,7 +130477,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 609, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L609" } ] }, @@ -130368,7 +130501,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 475, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L475" } ], "type": { @@ -130387,7 +130520,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L466" } ], "type": { @@ -130408,7 +130541,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L468" } ], "type": { @@ -130429,7 +130562,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L490" } ], "type": { @@ -130450,7 +130583,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L469" } ], "type": { @@ -130471,7 +130604,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L479" } ], "type": { @@ -130490,7 +130623,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L478" } ], "type": { @@ -130511,7 +130644,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L489" } ], "type": { @@ -130532,7 +130665,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L476" } ], "type": { @@ -130553,7 +130686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 471, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L471" } ], "type": { @@ -130574,7 +130707,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 480, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L480" } ], "type": { @@ -130595,7 +130728,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L488" } ], "type": { @@ -130676,7 +130809,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L465" } ], "type": { @@ -130697,7 +130830,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 485, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L485" } ], "type": { @@ -130723,7 +130856,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L474" } ], "type": { @@ -130744,7 +130877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 486, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L486" } ], "type": { @@ -130765,7 +130898,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 487, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L487" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L487" } ], "type": { @@ -130786,7 +130919,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 482, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L482" } ], "type": { @@ -130807,7 +130940,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L472" } ], "type": { @@ -130828,7 +130961,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L473" } ], "type": { @@ -130849,7 +130982,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L477" } ], "type": { @@ -130870,7 +131003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 481, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L481" } ], "type": { @@ -130891,7 +131024,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L470" } ], "type": { @@ -130912,7 +131045,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L483" } ], "type": { @@ -130933,7 +131066,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 484, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L484" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L484" } ], "type": { @@ -130952,7 +131085,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L467" } ], "type": { @@ -130977,7 +131110,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 464, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L464" } ] }, @@ -131009,7 +131142,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L452" } ], "type": { @@ -131038,7 +131171,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L456" } ], "type": { @@ -131061,7 +131194,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 448, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L448" } ], "indexSignatures": [ @@ -131076,7 +131209,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L457" } ], "parameters": [ @@ -131127,7 +131260,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L501" } ], "type": { @@ -131172,7 +131305,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L531" } ], "type": { @@ -131201,7 +131334,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L506" } ], "type": { @@ -131230,7 +131363,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 523, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L523" } ], "type": { @@ -131259,7 +131392,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L516" } ], "type": { @@ -131288,7 +131421,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L511" } ], "type": { @@ -131308,7 +131441,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 493, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L493" } ] }, @@ -131332,7 +131465,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L397" } ], "type": { @@ -131351,7 +131484,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 390, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L390" } ], "type": { @@ -131372,7 +131505,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 392, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L392" } ], "type": { @@ -131388,7 +131521,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 392, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L392" } ], "indexSignatures": [ @@ -131403,7 +131536,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 393, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L393" } ], "parameters": [ @@ -131439,7 +131572,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 395, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L395" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L395" } ], "type": { @@ -131460,7 +131593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 398, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L398" } ], "type": { @@ -131479,7 +131612,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L396" } ], "type": { @@ -131500,7 +131633,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 399, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L399" } ], "type": { @@ -131519,7 +131652,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 391, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L391" } ], "type": { @@ -131539,7 +131672,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 389, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L389" } ] }, @@ -131554,7 +131687,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 460, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L460" } ], "indexSignatures": [ @@ -131569,7 +131702,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L461" } ], "parameters": [ @@ -131618,7 +131751,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 836, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L836" } ], "type": { @@ -131639,7 +131772,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L841" } ], "type": { @@ -131678,7 +131811,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 849, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L849" } ], "type": { @@ -131707,7 +131840,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 843, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L843" } ], "type": { @@ -131727,7 +131860,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 841, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L841" } ] } @@ -131752,7 +131885,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 838, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L838" } ], "type": { @@ -131779,7 +131912,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 840, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L840" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L840" } ], "type": { @@ -131801,7 +131934,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 834, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L834" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L834" } ] }, @@ -131825,7 +131958,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L822" } ], "type": { @@ -131864,7 +131997,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 831, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L831" } ], "type": { @@ -131893,7 +132026,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 824, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L824" } ], "type": { @@ -131913,7 +132046,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 822, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L822" } ] } @@ -131938,7 +132071,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L817" } ], "type": { @@ -131965,7 +132098,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 819, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L819" } ], "type": { @@ -131992,7 +132125,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L821" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L821" } ], "type": { @@ -132014,7 +132147,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 815, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L815" } ] }, @@ -132044,7 +132177,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 855, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L855" } ], "type": { @@ -132071,7 +132204,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 858, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L858" } ], "type": { @@ -132093,7 +132226,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 853, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L853" } ] }, @@ -132108,7 +132241,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 364, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L364" } ], "type": { @@ -132154,7 +132287,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 364, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L364" } ] } @@ -132175,7 +132308,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L54" } ], "type": { @@ -132225,7 +132358,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 52, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L52" } ], "type": { @@ -132244,7 +132377,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1241, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1241" } ], "type": { @@ -132272,7 +132405,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 696, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L696" } ], "type": { @@ -132309,7 +132442,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1700, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1700" } ], "type": { @@ -132340,7 +132473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1702, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1702" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1702" } ], "type": { @@ -132367,7 +132500,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1705" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1705" } ], "type": { @@ -132387,7 +132520,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1700, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1700" } ] } @@ -132413,7 +132546,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1693, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1693" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1693" } ], "type": { @@ -132448,7 +132581,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1695, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1695" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1695" } ], "type": { @@ -132468,7 +132601,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1693, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1693" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1693" } ] } @@ -132498,7 +132631,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1719" } ], "type": { @@ -132529,7 +132662,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1721" } ], "type": { @@ -132549,7 +132682,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1719" } ] } @@ -132575,7 +132708,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1711, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1711" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1711" } ], "type": { @@ -132610,7 +132743,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1713, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1713" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1713" } ], "type": { @@ -132635,7 +132768,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1711, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1711" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1711" } ] } @@ -132656,7 +132789,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1172, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1172" } ], "type": { @@ -132708,7 +132841,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1223, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1223" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1223" } ], "type": { @@ -132746,7 +132879,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1164, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1164" } ], "type": { @@ -132819,7 +132952,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1193, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1193" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1193" } ], "type": { @@ -132879,7 +133012,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1213" } ], "type": { @@ -132931,7 +133064,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1220, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1220" } ], "type": { @@ -132960,7 +133093,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1917, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1917" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1917" } ], "type": { @@ -133012,7 +133145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1139, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1139" } ], "type": { @@ -133050,7 +133183,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1908, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1908" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1908" } ], "type": { @@ -133123,7 +133256,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1930, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1930" } ], "type": { @@ -133175,7 +133308,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1243, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1243" } ], "type": { @@ -133210,7 +133343,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1264" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1264" } ], "type": { @@ -133254,7 +133387,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1245" } ], "type": { @@ -133305,7 +133438,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1253" } ], "type": { @@ -133336,7 +133469,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1243, "character": 74, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1243" } ] } @@ -133365,7 +133498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1229, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1229" } ], "typeParameters": [ @@ -133438,7 +133571,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1233" } ], "type": { @@ -133463,7 +133596,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1231, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1231" } ] } @@ -133529,7 +133662,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1144" } ], "type": { @@ -133564,7 +133697,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1146" } ], "type": { @@ -133584,7 +133717,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1144, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1144" } ] } @@ -133613,7 +133746,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1137, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1137" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1137" } ], "type": { @@ -133650,7 +133783,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1116, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1116" } ], "type": { @@ -133681,7 +133814,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1118, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1118" } ], "type": { @@ -133708,7 +133841,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1124, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1124" } ], "type": { @@ -133735,7 +133868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1127" } ], "type": { @@ -133770,7 +133903,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1121" } ], "type": { @@ -133797,7 +133930,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1130" } ], "type": { @@ -133819,7 +133952,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1116, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1116" } ] } @@ -133855,7 +133988,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2524, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2524" } ], "type": { @@ -133903,7 +134036,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2532, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2532" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2532" } ], "type": { @@ -133940,7 +134073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2551, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2551" } ], "type": { @@ -133980,7 +134113,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2557, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2557" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2557" } ], "type": { @@ -134000,7 +134133,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2557, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2557" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2557" } ] } @@ -134034,7 +134167,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 267, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L267" } ], "type": { @@ -134063,7 +134196,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L270" } ], "type": { @@ -134091,7 +134224,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L269" } ], "type": { @@ -134110,7 +134243,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 268, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L268" } ], "type": { @@ -134130,7 +134263,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 267, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L267" } ] } @@ -134151,7 +134284,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2769, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2769" } ], "type": { @@ -134174,7 +134307,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2771, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2771" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2771" } ], "type": { @@ -134193,7 +134326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2770, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2770" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2770" } ], "type": { @@ -134213,7 +134346,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2769, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2769" } ] } @@ -134230,7 +134363,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2765, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2765" } ], "type": { @@ -134253,7 +134386,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2766, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2766" } ], "type": { @@ -134273,7 +134406,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2765, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2765" } ] } @@ -134290,7 +134423,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2753, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2753" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2753" } ], "type": { @@ -134319,7 +134452,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2755, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2755" } ], "type": { @@ -134346,7 +134479,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2756, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2756" } ], "type": { @@ -134376,7 +134509,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2756, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2756" } ], "type": { @@ -134407,7 +134540,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2756, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2756" } ] } @@ -134448,7 +134581,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2761, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2761" } ], "type": { @@ -134475,7 +134608,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2759, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2759" } ], "type": { @@ -134507,7 +134640,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2747, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2747" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2747" } ], "type": { @@ -134536,7 +134669,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2749, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2749" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2749" } ], "type": { @@ -134585,7 +134718,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2760, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2760" } ], "type": { @@ -134614,7 +134747,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 251, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L251" } ], "type": { @@ -134641,7 +134774,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L253" } ], "type": { @@ -134671,7 +134804,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L252" } ], "type": { @@ -134702,7 +134835,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 251, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L251" } ] } @@ -134723,7 +134856,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 256, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L256" } ], "type": { @@ -134750,7 +134883,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L258" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L258" } ], "type": { @@ -134780,7 +134913,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L257" } ], "type": { @@ -134812,7 +134945,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L259" } ], "type": { @@ -134843,7 +134976,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 256, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L256" } ] } @@ -134864,7 +134997,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 273, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L273" } ], "type": { @@ -134891,7 +135024,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L275" } ], "type": { @@ -134912,7 +135045,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L274" } ], "type": { @@ -134934,7 +135067,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 273, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L273" } ] } @@ -134955,7 +135088,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 278, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L278" } ], "type": { @@ -134982,7 +135115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L280" } ], "type": { @@ -135003,7 +135136,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L279" } ], "type": { @@ -135026,7 +135159,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 281, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L281" } ], "type": { @@ -135048,7 +135181,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 278, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L278" } ] } @@ -135069,7 +135202,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1817, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1817" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1817" } ], "type": { @@ -135106,7 +135239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2277, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2277" } ], "type": { @@ -135139,7 +135272,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2289" } ], "type": { @@ -135171,7 +135304,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2295" } ], "type": { @@ -135215,7 +135348,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2297" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2297" } ], "type": { @@ -135259,7 +135392,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2309" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2309" } ], "type": { @@ -135286,7 +135419,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2285, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2285" } ], "type": { @@ -135313,7 +135446,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2287, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2287" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2287" } ], "type": { @@ -135342,7 +135475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2305, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2305" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2305" } ], "type": { @@ -135371,7 +135504,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2301" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2301" } ], "type": { @@ -135400,7 +135533,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2299, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2299" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2299" } ], "type": { @@ -135435,7 +135568,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2281, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2281" } ], "type": { @@ -135464,7 +135597,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2303, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2303" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2303" } ], "type": { @@ -135493,7 +135626,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2315, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2315" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2315" } ], "type": { @@ -135520,7 +135653,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2283, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2283" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2283" } ], "type": { @@ -135549,7 +135682,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2293, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2293" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2293" } ], "type": { @@ -135576,7 +135709,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2279" } ], "type": { @@ -135607,7 +135740,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2291" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2291" } ], "type": { @@ -135639,7 +135772,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2307, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2307" } ], "type": { @@ -135668,7 +135801,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2311, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2311" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2311" } ], "type": { @@ -135697,7 +135830,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2313, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2313" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2313" } ], "type": { @@ -135720,7 +135853,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2277, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2277" } ] } @@ -135745,7 +135878,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2068, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2068" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2068" } ], "type": { @@ -135776,7 +135909,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2070, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2070" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2070" } ], "type": { @@ -135805,7 +135938,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2072, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2072" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2072" } ], "type": { @@ -135834,7 +135967,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2076, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2076" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2076" } ], "type": { @@ -135866,7 +135999,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2074, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2074" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2074" } ], "type": { @@ -135898,7 +136031,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2078, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2078" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2078" } ], "type": { @@ -135932,7 +136065,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2080, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2080" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2080" } ], "type": { @@ -135961,7 +136094,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2082, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2082" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2082" } ], "type": { @@ -135983,7 +136116,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2068, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2068" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2068" } ] } @@ -136008,7 +136141,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2227, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2227" } ], "type": { @@ -136041,7 +136174,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2239" } ], "type": { @@ -136073,7 +136206,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2245" } ], "type": { @@ -136117,7 +136250,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2247" } ], "type": { @@ -136161,7 +136294,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2259" } ], "type": { @@ -136188,7 +136321,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2237, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2237" } ], "type": { @@ -136215,7 +136348,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2269" } ], "type": { @@ -136244,7 +136377,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2267" } ], "type": { @@ -136284,7 +136417,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2255" } ], "type": { @@ -136313,7 +136446,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2251" } ], "type": { @@ -136342,7 +136475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2249" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2249" } ], "type": { @@ -136369,7 +136502,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2229" } ], "type": { @@ -136404,7 +136537,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2233" } ], "type": { @@ -136433,7 +136566,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2253" } ], "type": { @@ -136462,7 +136595,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2265, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2265" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2265" } ], "type": { @@ -136489,7 +136622,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2235" } ], "type": { @@ -136518,7 +136651,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2243, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2243" } ], "type": { @@ -136545,7 +136678,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2231, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2231" } ], "type": { @@ -136576,7 +136709,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2241" } ], "type": { @@ -136608,7 +136741,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2257" } ], "type": { @@ -136637,7 +136770,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2261" } ], "type": { @@ -136664,7 +136797,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2271, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2271" } ], "type": { @@ -136693,7 +136826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2263" } ], "type": { @@ -136716,7 +136849,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2227, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2227" } ] } @@ -136741,7 +136874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2376, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2376" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2376" } ], "type": { @@ -136767,7 +136900,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2378, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2378" } ], "type": { @@ -136790,7 +136923,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2378, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2378" } ], "type": { @@ -136815,7 +136948,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2378, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2378" } ] } @@ -136832,7 +136965,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2379" } ], "type": { @@ -136852,7 +136985,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2377, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2377" } ] } @@ -136877,7 +137010,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2382, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2382" } ], "type": { @@ -136900,7 +137033,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2382, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2382" } ], "type": { @@ -136919,7 +137052,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2382, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2382" } ] } @@ -136936,7 +137069,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2383, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2383" } ], "type": { @@ -136958,7 +137091,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2381, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2381" } ] } @@ -136985,7 +137118,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2371, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2371" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2371" } ], "type": { @@ -137022,7 +137155,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2194, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2194" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2194" } ], "type": { @@ -137050,7 +137183,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 862, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L862" } ], "type": { @@ -137094,7 +137227,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 773, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L773" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L773" } ], "type": { @@ -137118,7 +137251,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 775, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L775" } ], "type": { @@ -137144,7 +137277,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 777, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L777" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L777" } ], "type": { @@ -137165,7 +137298,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 785, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L785" } ], "type": { @@ -137198,7 +137331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 790, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L790" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L790" } ], "type": { @@ -137219,7 +137352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 792, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L792" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L792" } ], "type": { @@ -137296,7 +137429,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 787, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L787" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L787" } ], "type": { @@ -137316,7 +137449,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 785, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L785" } ] } @@ -137343,7 +137476,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 783, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L783" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L783" } ], "type": { @@ -137380,7 +137513,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 780, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L780" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L780" } ], "type": { @@ -137402,7 +137535,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 776, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L776" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L776" } ] } @@ -137427,7 +137560,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 798, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L798" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L798" } ], "type": { @@ -137478,7 +137611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 801, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L801" } ], "type": { @@ -137499,7 +137632,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 806, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L806" } ], "type": { @@ -137532,7 +137665,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 808, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L808" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L808" } ], "type": { @@ -137552,7 +137685,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 806, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L806" } ] } @@ -137577,7 +137710,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 804, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L804" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L804" } ], "type": { @@ -137602,7 +137735,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 797, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L797" } ] } @@ -137621,7 +137754,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 193, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L193" } ], "type": { @@ -137694,7 +137827,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L203" } ], "type": { @@ -137714,7 +137847,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 193, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L193" } ] } @@ -137787,7 +137920,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 423, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L423" } ], "typeParameters": [ @@ -137867,7 +138000,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 443, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L443" } ], "type": { @@ -137910,7 +138043,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L436" } ], "type": { @@ -137942,7 +138075,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 431, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L431" } ], "type": { @@ -137969,7 +138102,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L428" } ], "type": { @@ -137990,7 +138123,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L445" } ], "type": { @@ -138045,7 +138178,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L441" } ], "type": { @@ -138067,7 +138200,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L444" } ], "type": { @@ -138087,7 +138220,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 426, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L426" } ] } @@ -138128,7 +138261,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 407, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L407" } ], "type": { @@ -138163,7 +138296,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 941, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L941" } ], "type": { @@ -138194,7 +138327,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L944" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L944" } ], "type": { @@ -138221,7 +138354,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L948" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L948" } ], "type": { @@ -138242,7 +138375,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 949, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L949" } ], "type": { @@ -138278,7 +138411,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L942" } ], "type": { @@ -138307,7 +138440,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 941, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L941" } ] } @@ -138324,7 +138457,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 927, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L927" } ], "type": { @@ -138355,7 +138488,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L930" } ], "type": { @@ -138376,7 +138509,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 931, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L931" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L931" } ], "type": { @@ -138421,7 +138554,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L928" } ], "type": { @@ -138450,7 +138583,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 927, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L927" } ] } @@ -138467,7 +138600,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -138519,7 +138652,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 975, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L975" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L975" } ], "type": { @@ -138550,7 +138683,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 980, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L980" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L980" } ], "type": { @@ -138577,7 +138710,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L985" } ], "type": { @@ -138604,7 +138737,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L989" } ], "type": { @@ -138631,7 +138764,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 991, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L991" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L991" } ], "type": { @@ -138658,7 +138791,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L993" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L993" } ], "type": { @@ -138680,7 +138813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 975, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L975" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L975" } ] } @@ -138697,7 +138830,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 969, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L969" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L969" } ], "type": { @@ -138724,7 +138857,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L970" } ], "type": { @@ -138745,7 +138878,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L971" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L971" } ], "type": { @@ -138767,7 +138900,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 969, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L969" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L969" } ] } @@ -138788,7 +138921,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 996, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L996" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L996" } ], "type": { @@ -138832,7 +138965,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 934, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L934" } ], "type": { @@ -138863,7 +138996,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L937" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L937" } ], "type": { @@ -138884,7 +139017,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 938, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L938" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L938" } ], "type": { @@ -138920,7 +139053,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L935" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L935" } ], "type": { @@ -138940,7 +139073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 934, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L934" } ] } @@ -138957,7 +139090,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 920, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L920" } ], "type": { @@ -138980,7 +139113,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 922, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L922" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L922" } ], "type": { @@ -139001,7 +139134,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 924, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L924" } ], "type": { @@ -139046,7 +139179,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L923" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L923" } ], "type": { @@ -139065,7 +139198,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 921, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L921" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L921" } ], "type": { @@ -139085,7 +139218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 920, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L920" } ] } @@ -139102,7 +139235,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L80" } ], "type": { @@ -139127,7 +139260,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L109" } ], "type": { @@ -139148,7 +139281,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L127" } ], "type": { @@ -139171,7 +139304,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L127" } ], "signatures": [ @@ -139253,7 +139386,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "type": { @@ -139276,7 +139409,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "signatures": [ @@ -139322,7 +139455,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "indexSignatures": [ @@ -139337,7 +139470,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "parameters": [ @@ -139396,7 +139529,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L190" } ], "type": { @@ -139419,7 +139552,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L123" } ], "type": { @@ -139445,7 +139578,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L125" } ], "type": { @@ -139477,7 +139610,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L141" } ], "type": { @@ -139498,7 +139631,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L84" } ], "type": { @@ -139514,7 +139647,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L84" } ], "indexSignatures": [ @@ -139529,7 +139662,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L84" } ], "parameters": [ @@ -139592,7 +139725,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L136" } ], "type": { @@ -139659,7 +139792,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 173, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L173" } ], "type": { @@ -139680,7 +139813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L111" } ], "type": { @@ -139720,7 +139853,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L182" } ], "type": { @@ -139741,7 +139874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L113" } ], "type": { @@ -139764,7 +139897,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L86" } ], "type": { @@ -139793,7 +139926,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L146" } ], "type": { @@ -139814,7 +139947,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L82" } ], "type": { @@ -139884,7 +140017,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L121" } ], "type": { @@ -139909,7 +140042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L80" } ] } @@ -139926,7 +140059,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1815, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1815" } ], "type": { @@ -139949,7 +140082,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1815, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1815" } ], "type": { @@ -139980,7 +140113,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1815, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1815" } ] } @@ -139997,7 +140130,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1934, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1934" } ], "type": { @@ -140020,7 +140153,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1935, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1935" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1935" } ], "type": { @@ -140052,7 +140185,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1936, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1936" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1936" } ], "type": { @@ -140071,7 +140204,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1937, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1937" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1937" } ], "type": { @@ -140091,7 +140224,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1934, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1934" } ] } @@ -140116,7 +140249,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2363, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2363" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2363" } ], "type": { @@ -140149,7 +140282,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2365, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2365" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2365" } ], "type": { @@ -140171,7 +140304,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2363, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2363" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2363" } ] } @@ -140205,7 +140338,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L78" } ], "type": { @@ -140221,7 +140354,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -140314,7 +140447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -140382,7 +140515,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1110, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1110" } ], "type": { @@ -140406,7 +140539,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1098, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1098" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1098" } ], "type": { @@ -140444,7 +140577,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1079, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1079" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1079" } ], "type": { @@ -140482,7 +140615,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1072, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1072" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1072" } ], "type": { @@ -140527,7 +140660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1096, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1096" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1096" } ], "type": { @@ -140565,7 +140698,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1004, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1004" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1004" } ], "type": { @@ -140603,7 +140736,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1865, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1865" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1865" } ], "type": { @@ -140647,7 +140780,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1859, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1859" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1859" } ], "type": { @@ -140712,7 +140845,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1876, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1876" } ], "type": { @@ -140756,7 +140889,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1070, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1070" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1070" } ], "type": { @@ -140791,7 +140924,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1006, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1006" } ], "type": { @@ -140822,7 +140955,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1008, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1008" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1008" } ], "type": { @@ -140842,7 +140975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1006, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1006" } ] } @@ -140859,7 +140992,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1062, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1062" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1062" } ], "type": { @@ -140897,7 +141030,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1027, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1027" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1027" } ], "type": { @@ -140935,7 +141068,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1023, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1023" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1023" } ], "type": { @@ -140981,7 +141114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1049, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1049" } ], "typeParameters": [ @@ -141047,7 +141180,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1050, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1050" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1050" } ], "type": { @@ -141095,7 +141228,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1049, "character": 98, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1049" } ] } @@ -141133,7 +141266,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1059" } ], "typeParameters": [ @@ -141220,7 +141353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 861, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L861" } ], "type": { @@ -141256,7 +141389,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2444, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2444" } ], "type": { @@ -141287,7 +141420,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2446, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2446" } ], "type": { @@ -141314,7 +141447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2452" } ], "type": { @@ -141341,7 +141474,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2448" } ], "type": { @@ -141368,7 +141501,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2450" } ], "type": { @@ -141388,7 +141521,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2444, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2444" } ] } @@ -141429,7 +141562,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2466, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2466" } ], "type": { @@ -141460,7 +141593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2468" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2468" } ], "type": { @@ -141487,7 +141620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2472" } ], "type": { @@ -141516,7 +141649,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2470" } ], "type": { @@ -141543,7 +141676,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2481, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2481" } ], "type": { @@ -141570,7 +141703,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2474" } ], "type": { @@ -141601,7 +141734,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2478, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2478" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2478" } ], "type": { @@ -141628,7 +141761,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2476, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2476" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2476" } ], "type": { @@ -141648,7 +141781,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2474, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2474" } ] } @@ -141666,7 +141799,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2466, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2466" } ] } @@ -141691,7 +141824,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2033, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2033" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2033" } ], "type": { @@ -141722,7 +141855,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2035, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2035" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2035" } ], "type": { @@ -141749,7 +141882,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2037, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2037" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2037" } ], "type": { @@ -141778,7 +141911,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2039, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2039" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2039" } ], "type": { @@ -141805,7 +141938,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2041, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2041" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2041" } ], "type": { @@ -141836,7 +141969,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2047, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2047" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2047" } ], "type": { @@ -141863,7 +141996,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2059" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2059" } ], "type": { @@ -141890,7 +142023,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2053" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2053" } ], "type": { @@ -141924,7 +142057,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2049, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2049" } ], "type": { @@ -141951,7 +142084,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2051, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2051" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2051" } ], "type": { @@ -141981,7 +142114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2045, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2045" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2045" } ], "type": { @@ -142010,7 +142143,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2055, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2055" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2055" } ], "type": { @@ -142044,7 +142177,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2057, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2057" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2057" } ], "type": { @@ -142071,7 +142204,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2043, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2043" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2043" } ], "type": { @@ -142100,7 +142233,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2061, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2061" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2061" } ], "type": { @@ -142123,7 +142256,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2033, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2033" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2033" } ] } @@ -142148,7 +142281,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2000, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2000" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2000" } ], "type": { @@ -142184,7 +142317,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2115, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2115" } ], "type": { @@ -142210,7 +142343,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ], "type": { @@ -142236,7 +142369,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ], "type": { @@ -142255,7 +142388,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ], "type": { @@ -142280,7 +142413,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ] } @@ -142305,7 +142438,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2118, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2118" } ], "type": { @@ -142325,7 +142458,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2116" } ] } @@ -142350,7 +142483,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2121, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2121" } ], "type": { @@ -142373,7 +142506,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2121, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2121" } ], "type": { @@ -142392,7 +142525,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2121, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2121" } ] } @@ -142409,7 +142542,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -142431,7 +142564,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2120" } ] } @@ -142458,7 +142591,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2018, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2018" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2018" } ], "type": { @@ -142494,7 +142627,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2109" } ], "type": { @@ -142531,7 +142664,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2006, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2006" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2006" } ], "type": { @@ -142558,7 +142691,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2024, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2024" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2024" } ], "type": { @@ -142598,7 +142731,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2012, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2012" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2012" } ], "type": { @@ -142634,7 +142767,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2538, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2538" } ], "type": { @@ -142665,7 +142798,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2540, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2540" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2540" } ], "type": { @@ -142694,7 +142827,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2544, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2544" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2544" } ], "type": { @@ -142721,7 +142854,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2542" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2542" } ], "type": { @@ -142744,7 +142877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2538, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2538" } ] } @@ -142777,7 +142910,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2497, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2497" } ], "type": { @@ -142808,7 +142941,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2499, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2499" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2499" } ], "type": { @@ -142828,7 +142961,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2497, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2497" } ] } @@ -142845,7 +142978,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 284, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L284" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L284" } ], "type": { @@ -142871,7 +143004,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L286" } ], "type": { @@ -142894,7 +143027,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 287, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L287" } ], "type": { @@ -142915,7 +143048,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 288, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L288" } ], "type": { @@ -142935,7 +143068,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 286, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L286" } ] } @@ -142952,7 +143085,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 290, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L290" } ], "type": { @@ -142972,7 +143105,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 285, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L285" } ] } @@ -142997,7 +143130,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 293, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L293" } ], "type": { @@ -143020,7 +143153,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 294, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L294" } ], "type": { @@ -143041,7 +143174,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 295, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L295" } ], "type": { @@ -143061,7 +143194,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 293, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L293" } ] } @@ -143078,7 +143211,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 297, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L297" } ], "type": { @@ -143100,7 +143233,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 292, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L292" } ] } @@ -143127,7 +143260,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2201, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2201" } ], "type": { @@ -143158,7 +143291,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2205, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2205" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2205" } ], "type": { @@ -143185,7 +143318,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2203" } ], "type": { @@ -143212,7 +143345,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2209, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2209" } ], "type": { @@ -143241,7 +143374,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2213" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2213" } ], "type": { @@ -143270,7 +143403,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2221, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2221" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2221" } ], "type": { @@ -143302,7 +143435,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2217" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2217" } ], "type": { @@ -143334,7 +143467,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2215" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2215" } ], "type": { @@ -143366,7 +143499,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2219, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2219" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2219" } ], "type": { @@ -143396,7 +143529,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2207, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2207" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2207" } ], "type": { @@ -143425,7 +143558,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2211" } ], "type": { @@ -143445,7 +143578,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2201, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2201" } ] } @@ -143462,7 +143595,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1826, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1826" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1826" } ], "type": { @@ -143495,7 +143628,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1828, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1828" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1828" } ], "type": { @@ -143524,7 +143657,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1830" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1830" } ], "type": { @@ -143544,7 +143677,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1826, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1826" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1826" } ] } @@ -143561,7 +143694,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1819, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1819" } ], "type": { @@ -143584,7 +143717,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1822" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1822" } ], "type": { @@ -143603,7 +143736,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1821, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1821" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1821" } ], "type": { @@ -143631,7 +143764,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1823, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1823" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1823" } ], "type": { @@ -143651,7 +143784,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1819, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1819" } ], "indexSignatures": [ @@ -143666,7 +143799,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1820, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1820" } ], "parameters": [ @@ -143710,7 +143843,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2678, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2678" } ], "type": { @@ -143733,7 +143866,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2679, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2679" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2679" } ], "type": { @@ -143752,7 +143885,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2681, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2681" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2681" } ], "type": { @@ -143771,7 +143904,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2680, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2680" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2680" } ], "type": { @@ -143796,7 +143929,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2678, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2678" } ] } @@ -143821,7 +143954,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2685, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2685" } ], "type": { @@ -143844,7 +143977,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2686, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2686" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2686" } ], "type": { @@ -143863,7 +143996,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2687, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2687" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2687" } ], "type": { @@ -143888,7 +144021,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2685, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2685" } ] } @@ -143905,7 +144038,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2740, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2740" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2740" } ], "type": { @@ -143936,7 +144069,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2742" } ], "type": { @@ -143956,7 +144089,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2740, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2740" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2740" } ] } @@ -143981,7 +144114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2691, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2691" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2691" } ], "type": { @@ -144004,7 +144137,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2694, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2694" } ], "type": { @@ -144025,7 +144158,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2693, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2693" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2693" } ], "type": { @@ -144044,7 +144177,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2692" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2692" } ], "type": { @@ -144065,7 +144198,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2695, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2695" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2695" } ], "type": { @@ -144085,7 +144218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2691, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2691" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2691" } ] } @@ -144110,7 +144243,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2671, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2671" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2671" } ], "type": { @@ -144133,7 +144266,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2674, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2674" } ], "type": { @@ -144154,7 +144287,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2673, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2673" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2673" } ], "type": { @@ -144173,7 +144306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2672" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2672" } ], "type": { @@ -144193,7 +144326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2671, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2671" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2671" } ] } @@ -144218,7 +144351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2658, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2658" } ], "type": { @@ -144241,7 +144374,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2659, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2659" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2659" } ], "type": { @@ -144260,7 +144393,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2661, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2661" } ], "type": { @@ -144279,7 +144412,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2660, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2660" } ], "type": { @@ -144304,7 +144437,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2658, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2658" } ] } @@ -144329,7 +144462,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2665, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2665" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2665" } ], "type": { @@ -144352,7 +144485,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2666, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2666" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2666" } ], "type": { @@ -144371,7 +144504,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2667" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2667" } ], "type": { @@ -144396,7 +144529,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2665, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2665" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2665" } ] } @@ -144413,7 +144546,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2733, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2733" } ], "type": { @@ -144444,7 +144577,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2737, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2737" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2737" } ], "type": { @@ -144471,7 +144604,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2735, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2735" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2735" } ], "type": { @@ -144491,7 +144624,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2733, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2733" } ] } @@ -144516,7 +144649,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ], "typeParameters": [ @@ -144625,7 +144758,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L24" } ], "type": { @@ -144786,7 +144919,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2707, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2707" } ], "type": { @@ -144811,7 +144944,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2708" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2708" } ], "type": { @@ -144836,7 +144969,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2709, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2709" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2709" } ], "type": { @@ -144861,7 +144994,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2708, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2708" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2708" } ] } @@ -144879,7 +145012,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2707, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2707" } ] } @@ -144904,7 +145037,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 230, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L230" } ], "typeParameters": [ @@ -144961,7 +145094,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -144983,7 +145116,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -145003,7 +145136,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 231, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L231" } ] } @@ -145028,7 +145161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -145047,7 +145180,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -145094,7 +145227,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L235" } ] } @@ -145126,7 +145259,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 244, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L244" } ], "typeParameters": [ @@ -145161,7 +145294,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 245, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L245" } ], "type": { @@ -145183,7 +145316,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 245, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L245" } ], "type": { @@ -145203,7 +145336,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 245, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L245" } ] } @@ -145228,7 +145361,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 247, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L247" } ], "type": { @@ -145280,7 +145413,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 248, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L248" } ], "type": { @@ -145302,7 +145435,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 246, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L246" } ] } @@ -145321,7 +145454,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1940, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1940" } ], "type": { @@ -145344,7 +145477,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1947" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -145365,7 +145498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1943, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1943" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1943" } ], "type": { @@ -145396,7 +145529,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1944" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1944" } ], "type": { @@ -145415,7 +145548,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1945, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1945" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1945" } ], "type": { @@ -145434,7 +145567,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1941" } ], "type": { @@ -145453,7 +145586,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1946" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -145472,7 +145605,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1948" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -145491,7 +145624,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1942" } ], "type": { @@ -145511,7 +145644,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1940, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1940" } ] } @@ -145535,7 +145668,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 864, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L864" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L864" } ], "type": { @@ -145561,7 +145694,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 867, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L867" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L867" } ], "type": { @@ -145582,7 +145715,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 868, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L868" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L868" } ], "type": { @@ -145615,7 +145748,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 872, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L872" } ], "type": { @@ -145644,7 +145777,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 870, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L870" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L870" } ], "type": { @@ -145664,7 +145797,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 868, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L868" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L868" } ] } @@ -145681,7 +145814,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 866, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L866" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L866" } ], "type": { @@ -145727,7 +145860,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 865, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L865" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L865" } ] } @@ -145754,7 +145887,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 878, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L878" } ], "type": { @@ -145787,7 +145920,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 880, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L880" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L880" } ], "type": { @@ -145807,7 +145940,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 878, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L878" } ] } @@ -145824,7 +145957,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 877, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L877" } ], "type": { @@ -145843,7 +145976,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 876, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L876" } ], "type": { @@ -145889,7 +146022,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 875, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L875" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L875" } ] } @@ -145908,7 +146041,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L626" } ], "type": { @@ -145933,7 +146066,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L627" } ], "type": { @@ -145966,7 +146099,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 635, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L635" } ], "type": { @@ -146011,7 +146144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 633, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L633" } ], "type": { @@ -146031,7 +146164,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L627" } ] } @@ -146049,7 +146182,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L626" } ] } @@ -146066,7 +146199,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 712, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L712" } ], "type": { @@ -146107,7 +146240,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L718" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L718" } ], "type": { @@ -146144,7 +146277,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 720, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L720" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L720" } ], "type": { @@ -146165,7 +146298,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L721" } ], "type": { @@ -146198,7 +146331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 723, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L723" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L723" } ], "type": { @@ -146218,7 +146351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 721, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L721" } ] } @@ -146307,7 +146440,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 714, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L714" } ], "type": { @@ -146366,7 +146499,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 714, "character": 97, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L714" } ] } @@ -146427,7 +146560,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 716, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L716" } ], "type": { @@ -146447,7 +146580,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 712, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L712" } ] } @@ -146464,7 +146597,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 697, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L697" } ], "type": { @@ -146489,7 +146622,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 700, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L700" } ], "type": { @@ -146522,7 +146655,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 706, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L706" } ], "type": { @@ -146538,7 +146671,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 706, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L706" } ], "indexSignatures": [ @@ -146553,7 +146686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 706, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L706" } ], "parameters": [ @@ -146599,7 +146732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L702" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L702" } ], "type": { @@ -146628,7 +146761,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 704, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L704" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L704" } ], "type": { @@ -146657,7 +146790,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 708, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L708" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L708" } ], "type": { @@ -146677,7 +146810,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 700, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L700" } ] } @@ -146702,7 +146835,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 699, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L699" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L699" } ], "type": { @@ -146724,7 +146857,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 697, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L697" } ] } @@ -146741,7 +146874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2700, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2700" } ], "type": { @@ -146766,7 +146899,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2701, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2701" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2701" } ], "type": { @@ -146791,7 +146924,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2702, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2702" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2702" } ], "type": { @@ -146812,7 +146945,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2703, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2703" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2703" } ], "type": { @@ -146837,7 +146970,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2701, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2701" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2701" } ] } @@ -146855,7 +146988,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2700, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2700" } ] } @@ -146872,7 +147005,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 652, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L652" } ], "type": { @@ -146909,7 +147042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L653" } ], "type": { @@ -146934,7 +147067,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 654, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L654" } ], "type": { @@ -146954,7 +147087,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 653, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L653" } ] } @@ -146972,7 +147105,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 652, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L652" } ] } @@ -146991,7 +147124,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 658, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L658" } ], "type": { @@ -147025,7 +147158,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 661, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L661" } ], "type": { @@ -147046,7 +147179,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 662, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L662" } ], "type": { @@ -147079,7 +147212,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L674" } ], "type": { @@ -147124,7 +147257,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 672, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L672" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L672" } ], "type": { @@ -147153,7 +147286,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 664, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L664" } ], "type": { @@ -147182,7 +147315,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 666, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L666" } ], "type": { @@ -147202,7 +147335,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 662, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L662" } ] } @@ -147220,7 +147353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 659, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L659" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L659" } ] } @@ -147247,7 +147380,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 680, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L680" } ], "type": { @@ -147280,7 +147413,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 690, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L690" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L690" } ], "type": { @@ -147309,7 +147442,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L692" } ], "type": { @@ -147363,7 +147496,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 688, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L688" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L688" } ], "type": { @@ -147392,7 +147525,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 682, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L682" } ], "type": { @@ -147412,7 +147545,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 680, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L680" } ] } @@ -147437,7 +147570,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 679, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L679" } ], "type": { @@ -147457,7 +147590,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 677, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L677" } ] } @@ -147476,7 +147609,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 884, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L884" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L884" } ], "type": { @@ -147504,7 +147637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 889, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L889" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L889" } ], "type": { @@ -147537,7 +147670,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 893, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L893" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L893" } ], "type": { @@ -147566,7 +147699,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 891, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L891" } ], "type": { @@ -147595,7 +147728,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 899, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L899" } ], "type": { @@ -147615,7 +147748,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 889, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L889" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L889" } ] } @@ -147640,7 +147773,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 887, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L887" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L887" } ], "type": { @@ -147660,7 +147793,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 885, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L885" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L885" } ] } @@ -147693,7 +147826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 904, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L904" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L904" } ], "type": { @@ -147714,7 +147847,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 906, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L906" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L906" } ], "type": { @@ -147747,7 +147880,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -147776,7 +147909,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 908, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L908" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L908" } ], "type": { @@ -147805,7 +147938,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 916, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L916" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L916" } ], "type": { @@ -147825,7 +147958,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 906, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L906" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L906" } ] } @@ -147843,7 +147976,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 902, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L902" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L902" } ] } @@ -147862,7 +147995,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1833, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1833" } ], "type": { @@ -147895,7 +148028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1844, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1844" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1844" } ], "type": { @@ -147928,7 +148061,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1833, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1833" } ] } @@ -147945,7 +148078,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1994, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1994" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1994" } ], "type": { @@ -147976,7 +148109,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 639, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L639" } ], "type": { @@ -148013,7 +148146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 640, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L640" } ], "type": { @@ -148038,7 +148171,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 643, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L643" } ], "type": { @@ -148059,7 +148192,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 644, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L644" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L644" } ], "type": { @@ -148089,7 +148222,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L642" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L642" } ], "type": { @@ -148110,7 +148243,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 641, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L641" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L641" } ], "type": { @@ -148130,7 +148263,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 640, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L640" } ] } @@ -148148,7 +148281,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 639, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L639" } ] } @@ -148167,7 +148300,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L727" } ], "type": { @@ -148192,7 +148325,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 729, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L729" } ], "type": { @@ -148218,7 +148351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 730, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L730" } ], "type": { @@ -148234,7 +148367,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 730, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L730" } ], "signatures": [ @@ -148265,7 +148398,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 729, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L729" } ] } @@ -148290,7 +148423,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 728, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L728" } ], "type": { @@ -148306,7 +148439,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 728, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L728" } ], "signatures": [ @@ -148394,7 +148527,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 733, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L733" } ], "type": { @@ -148410,7 +148543,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 733, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L733" } ], "signatures": [ @@ -148506,7 +148639,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 727, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L727" } ] } @@ -148523,7 +148656,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 736, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L736" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L736" } ], "type": { @@ -148549,7 +148682,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 738, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L738" } ], "type": { @@ -148570,7 +148703,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 746, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L746" } ], "type": { @@ -148603,7 +148736,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 751, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L751" } ], "type": { @@ -148624,7 +148757,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 753, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L753" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L753" } ], "type": { @@ -148705,7 +148838,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 748, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L748" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L748" } ], "type": { @@ -148725,7 +148858,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 746, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L746" } ] } @@ -148752,7 +148885,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 744, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L744" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L744" } ], "type": { @@ -148789,7 +148922,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 741, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L741" } ], "type": { @@ -148811,7 +148944,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 737, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L737" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L737" } ] } @@ -148836,7 +148969,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 759, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L759" } ], "type": { @@ -148887,7 +149020,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 762, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L762" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L762" } ], "type": { @@ -148908,7 +149041,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 767, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L767" } ], "type": { @@ -148941,7 +149074,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 769, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L769" } ], "type": { @@ -148961,7 +149094,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 767, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L767" } ] } @@ -148986,7 +149119,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 765, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L765" } ], "type": { @@ -149011,7 +149144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 758, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L758" } ] } @@ -149030,7 +149163,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 300, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L300" } ], "type": { @@ -149073,7 +149206,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L308" } ], "type": { @@ -149093,7 +149226,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 300, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L300" } ] } @@ -149114,7 +149247,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2720, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2720" } ], "type": { @@ -149139,7 +149272,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2721" } ], "type": { @@ -149164,7 +149297,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2722, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2722" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2722" } ], "type": { @@ -149184,7 +149317,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2721, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2721" } ] } @@ -149202,7 +149335,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2720, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2720" } ] } @@ -149227,7 +149360,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 225, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L225" } ], "typeParameters": [ @@ -149294,7 +149427,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1802, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1802" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1802" } ], "type": { @@ -149386,7 +149519,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1812, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1812" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1812" } ], "type": { @@ -149406,7 +149539,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1804, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1804" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1804" } ] } @@ -149449,7 +149582,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2323, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2323" } ], "type": { @@ -149482,7 +149615,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2331, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2331" } ], "type": { @@ -149514,7 +149647,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2337, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2337" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2337" } ], "type": { @@ -149558,7 +149691,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2339, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2339" } ], "type": { @@ -149602,7 +149735,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2351" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2351" } ], "type": { @@ -149631,7 +149764,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2327, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2327" } ], "type": { @@ -149660,7 +149793,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2329, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2329" } ], "type": { @@ -149689,7 +149822,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2347, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2347" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2347" } ], "type": { @@ -149718,7 +149851,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2343, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2343" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2343" } ], "type": { @@ -149747,7 +149880,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2341" } ], "type": { @@ -149776,7 +149909,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2345, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2345" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2345" } ], "type": { @@ -149805,7 +149938,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2357" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2357" } ], "type": { @@ -149834,7 +149967,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2325" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2325" } ], "type": { @@ -149863,7 +149996,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2335, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2335" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2335" } ], "type": { @@ -149892,7 +150025,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2333" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2333" } ], "type": { @@ -149924,7 +150057,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2349" } ], "type": { @@ -149953,7 +150086,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2353" } ], "type": { @@ -149982,7 +150115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2355" } ], "type": { @@ -150005,7 +150138,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2323, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2323" } ] } @@ -150030,7 +150163,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2090, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2090" } ], "type": { @@ -150063,7 +150196,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2092, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2092" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2092" } ], "type": { @@ -150092,7 +150225,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2094, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2094" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2094" } ], "type": { @@ -150121,7 +150254,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2100" } ], "type": { @@ -150155,7 +150288,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2096, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2096" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2096" } ], "type": { @@ -150184,7 +150317,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2098, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2098" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2098" } ], "type": { @@ -150216,7 +150349,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2102" } ], "type": { @@ -150238,7 +150371,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2090, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2090" } ] } @@ -150255,7 +150388,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 311, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L311" } ], "type": { @@ -150282,7 +150415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L312" } ], "type": { @@ -150304,7 +150437,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 311, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L311" } ] } @@ -150325,7 +150458,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 814, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L814" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L814" } ], "type": { @@ -150363,7 +150496,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2726, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2726" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2726" } ], "type": { @@ -150394,7 +150527,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2728, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2728" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2728" } ], "type": { @@ -150421,7 +150554,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2730, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2730" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2730" } ], "type": { @@ -150446,7 +150579,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2726, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2726" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2726" } ] } @@ -150463,7 +150596,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2713, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2713" } ], "type": { @@ -150494,7 +150627,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2715, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2715" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2715" } ], "type": { @@ -150521,7 +150654,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2717, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2717" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2717" } ], "type": { @@ -150546,7 +150679,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2713, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2713" } ] } @@ -150563,7 +150696,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 209, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L209" } ], "type": { @@ -150586,7 +150719,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L211" } ], "type": { @@ -150605,7 +150738,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L210" } ], "type": { @@ -150630,7 +150763,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 209, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L209" } ] } @@ -150647,7 +150780,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 208, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L208" } ], "type": { @@ -150682,7 +150815,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 812, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L812" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L812" } ], "type": { @@ -150716,7 +150849,7 @@ "fileName": "packages/core/auth-js/src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/AuthAdminApi.ts#L3" } ], "type": { @@ -150743,7 +150876,7 @@ "fileName": "packages/core/auth-js/src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/AuthClient.ts#L3" } ], "type": { @@ -150774,7 +150907,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L6" } ], "type": { @@ -150801,7 +150934,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L10" } ], "type": { @@ -150822,7 +150955,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L6" } ] } @@ -150842,7 +150975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1993, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1993" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1993" } ], "type": { @@ -150879,7 +151012,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L75" } ], "signatures": [ @@ -150894,7 +151027,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L75" } ], "parameters": [ @@ -150935,7 +151068,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L50" } ], "signatures": [ @@ -150950,7 +151083,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L50" } ], "parameters": [ @@ -150991,7 +151124,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L210" } ], "signatures": [ @@ -151006,7 +151139,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L210" } ], "parameters": [ @@ -151047,7 +151180,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L274" } ], "signatures": [ @@ -151062,7 +151195,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L274" } ], "parameters": [ @@ -151103,7 +151236,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L296" } ], "signatures": [ @@ -151118,7 +151251,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L296" } ], "parameters": [ @@ -151159,7 +151292,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L140" } ], "signatures": [ @@ -151174,7 +151307,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L140" } ], "parameters": [ @@ -151215,7 +151348,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 341, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L341" } ], "signatures": [ @@ -151230,7 +151363,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 341, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L341" } ], "parameters": [ @@ -151271,7 +151404,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L96" } ], "signatures": [ @@ -151347,7 +151480,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L96" } ], "typeParameters": [ @@ -151433,7 +151566,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L99" } ], "signatures": [ @@ -151448,7 +151581,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L99" } ], "type": { @@ -151507,7 +151640,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 323, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L323" } ], "signatures": [ @@ -151550,7 +151683,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 323, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L323" } ], "typeParameters": [ @@ -151636,7 +151769,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 326, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L326" } ], "signatures": [ @@ -151651,7 +151784,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 326, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L326" } ], "type": { @@ -157998,7 +158131,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "signatures": [ @@ -158052,7 +158185,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "typeParameters": [ @@ -158121,7 +158254,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -158142,7 +158275,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -158369,7 +158502,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -158395,7 +158528,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -158414,7 +158547,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -158456,7 +158589,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 128, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" } ], "type": { @@ -158477,7 +158610,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -158498,7 +158631,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" } ], "type": { @@ -158519,7 +158652,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -158540,7 +158673,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -158564,7 +158697,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -158590,7 +158723,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -158612,7 +158745,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ] } @@ -158669,7 +158802,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -158690,7 +158823,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -158919,7 +159052,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -158945,7 +159078,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -158966,7 +159099,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -159008,7 +159141,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" } ], "type": { @@ -159031,7 +159164,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -159052,7 +159185,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" } ], "type": { @@ -159073,7 +159206,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -159096,7 +159229,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -159122,7 +159255,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -159148,7 +159281,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" } ], "type": { @@ -159167,7 +159300,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "signatures": [ @@ -159329,7 +159462,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "typeParameters": [ @@ -159384,7 +159517,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -159404,7 +159537,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -159429,7 +159562,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -159449,7 +159582,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -159674,7 +159807,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "signatures": [ @@ -159712,7 +159845,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "parameters": [ @@ -159754,7 +159887,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 552, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" } ], "signatures": [ @@ -159805,7 +159938,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 552, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" } ], "typeParameters": [ @@ -159890,7 +160023,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "signatures": [ @@ -159924,7 +160057,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "parameters": [ @@ -159969,7 +160102,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "signatures": [ @@ -160069,7 +160202,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "type": { @@ -160090,7 +160223,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "signatures": [ @@ -160124,7 +160257,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "typeParameters": [ @@ -160231,7 +160364,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "signatures": [ @@ -160246,7 +160379,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "parameters": [ @@ -160378,7 +160511,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "signatures": [ @@ -160393,7 +160526,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "parameters": [ @@ -160501,7 +160634,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "signatures": [ @@ -160541,7 +160674,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "type": { @@ -160648,7 +160781,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 68, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" } ], "typeParameters": [ @@ -160782,7 +160915,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "signatures": [ @@ -160861,7 +160994,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "typeParameters": [ @@ -160918,7 +161051,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -160944,7 +161077,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -161198,7 +161331,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L98" } ], "type": { @@ -161435,7 +161568,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 96, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L96" } ], "type": { @@ -161478,7 +161611,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 101, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L101" } ], "type": { @@ -161507,7 +161640,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L97" } ], "type": { @@ -161540,7 +161673,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L99" } ], "type": { @@ -161569,7 +161702,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L100" } ], "type": { @@ -161590,7 +161723,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 95, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L95" } ] } @@ -161655,7 +161788,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L40" } ], "type": { @@ -161882,7 +162015,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L38" } ], "type": { @@ -161908,7 +162041,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L44" } ], "type": { @@ -161929,7 +162062,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L39" } ], "type": { @@ -161952,7 +162085,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L37" } ], "type": { @@ -161971,7 +162104,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 41, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L41" } ], "type": { @@ -162019,19 +162152,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L166" } ], "signatures": [ @@ -162046,7 +162179,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L152" } ], "typeParameters": [ @@ -162145,7 +162278,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L156" } ], "typeParameters": [ @@ -162246,7 +162379,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "signatures": [ @@ -162487,7 +162620,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "typeParameters": [ @@ -162713,7 +162846,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 392, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L392" } ], "type": { @@ -162763,7 +162896,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 391, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L391" } ], "type": { @@ -162809,7 +162942,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 390, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L390" } ], "type": { @@ -162830,7 +162963,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 389, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L389" } ] } @@ -162937,7 +163070,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "signatures": [ @@ -162971,7 +163104,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "typeParameters": [ @@ -163121,7 +163254,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 16, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L16" } ], "typeParameters": [ @@ -163186,7 +163319,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -163212,7 +163345,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -163240,7 +163373,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 22, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L22" } ] } @@ -163514,7 +163647,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "signatures": [ @@ -163543,7 +163676,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "parameters": [ @@ -163573,7 +163706,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 73, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -163592,7 +163725,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -163611,7 +163744,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -163630,7 +163763,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -163650,7 +163783,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ] } @@ -163688,7 +163821,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L9" } ], "type": { @@ -163707,7 +163840,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L7" } ], "type": { @@ -163726,7 +163859,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L8" } ], "type": { @@ -163745,7 +163878,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "signatures": [ @@ -163760,7 +163893,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -163783,7 +163916,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -163802,7 +163935,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -163821,7 +163954,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 62, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -163840,7 +163973,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -163859,7 +163992,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -163879,7 +164012,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ] } @@ -163907,7 +164040,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 6, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L6" } ], "extendedTypes": [ @@ -163940,7 +164073,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "signatures": [ @@ -163994,7 +164127,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "typeParameters": [ @@ -164123,7 +164256,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -164144,7 +164277,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -164371,7 +164504,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -164397,7 +164530,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -164416,7 +164549,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -164458,7 +164591,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 128, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" } ], "type": { @@ -164479,7 +164612,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -164500,7 +164633,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" } ], "type": { @@ -164521,7 +164654,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -164542,7 +164675,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -164566,7 +164699,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -164592,7 +164725,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -164614,7 +164747,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ] } @@ -164714,7 +164847,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -164741,7 +164874,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -164976,7 +165109,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -165008,7 +165141,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -165035,7 +165168,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -165083,7 +165216,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" } ], "type": { @@ -165112,7 +165245,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -165139,7 +165272,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" } ], "type": { @@ -165166,7 +165299,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -165195,7 +165328,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -165227,7 +165360,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -165259,7 +165392,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" } ], "type": { @@ -165285,7 +165418,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "signatures": [ @@ -165409,7 +165542,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "parameters": [ @@ -165654,19 +165787,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1119" } ], "signatures": [ @@ -165681,7 +165814,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" } ], "typeParameters": [ @@ -165789,7 +165922,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" } ], "parameters": [ @@ -166057,19 +166190,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L970" } ], "signatures": [ @@ -166084,7 +166217,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" } ], "typeParameters": [ @@ -166192,7 +166325,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" } ], "parameters": [ @@ -166274,7 +166407,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "signatures": [ @@ -166363,7 +166496,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "type": { @@ -166411,7 +166544,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" } ], "signatures": [ @@ -166529,7 +166662,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" } ], "typeParameters": [ @@ -166862,7 +166995,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "signatures": [ @@ -167012,7 +167145,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "parameters": [ @@ -167068,7 +167201,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 850, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" } ], "type": { @@ -167106,7 +167239,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 853, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" } ], "type": { @@ -167148,7 +167281,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 855, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" } ], "type": { @@ -167195,7 +167328,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 852, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" } ], "type": { @@ -167241,7 +167374,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "type": { @@ -167279,7 +167412,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 854, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" } ], "type": { @@ -167300,7 +167433,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 849, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" } ] } @@ -167569,21 +167702,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1986, + "line": 1988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1986" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1988" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1991, + "line": 1993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1991" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1993" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 2104, + "line": 2106, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2106" } ], "signatures": [ @@ -167596,9 +167729,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1986, + "line": 1988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1986" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1988" } ], "typeParameters": [ @@ -167776,9 +167909,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1991, + "line": 1993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1991" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1993" } ], "parameters": [ @@ -167836,7 +167969,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "signatures": [ @@ -167880,7 +168013,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "type": { @@ -168071,19 +168204,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L289" } ], "signatures": [ @@ -168098,7 +168231,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" } ], "typeParameters": [ @@ -168171,7 +168304,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" } ], "parameters": [ @@ -168323,19 +168456,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 343, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L343" } ], "signatures": [ @@ -168350,7 +168483,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" } ], "typeParameters": [ @@ -168423,7 +168556,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" } ], "parameters": [ @@ -168575,19 +168708,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 583, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" } ], "signatures": [ @@ -168602,7 +168735,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" } ], "typeParameters": [ @@ -168661,7 +168794,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ], "parameters": [ @@ -168761,19 +168894,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 588, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 592, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 601, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" } ], "signatures": [ @@ -168788,7 +168921,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 588, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" } ], "typeParameters": [ @@ -168854,7 +168987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 592, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" } ], "parameters": [ @@ -168961,19 +169094,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 610, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L619" } ], "signatures": [ @@ -168988,7 +169121,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" } ], "typeParameters": [ @@ -169054,7 +169187,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 610, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" } ], "parameters": [ @@ -169106,7 +169239,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" } ], "signatures": [ @@ -169208,7 +169341,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" } ], "typeParameters": [ @@ -169574,19 +169707,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 656, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 710, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L710" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L710" } ], "signatures": [ @@ -169601,7 +169734,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" } ], "typeParameters": [ @@ -169692,7 +169825,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 656, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" } ], "parameters": [ @@ -169746,7 +169879,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 725, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" } ], "signatures": [ @@ -169817,7 +169950,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 725, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" } ], "typeParameters": [ @@ -170103,19 +170236,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 497, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L497" } ], "signatures": [ @@ -170130,7 +170263,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" } ], "typeParameters": [ @@ -170189,7 +170322,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" } ], "parameters": [ @@ -170289,19 +170422,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L515" } ], "signatures": [ @@ -170316,7 +170449,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" } ], "typeParameters": [ @@ -170382,7 +170515,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" } ], "parameters": [ @@ -170489,19 +170622,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 533, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L533" } ], "signatures": [ @@ -170516,7 +170649,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" } ], "typeParameters": [ @@ -170582,7 +170715,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" } ], "parameters": [ @@ -170636,7 +170769,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "signatures": [ @@ -170768,7 +170901,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "parameters": [ @@ -170843,7 +170976,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -170872,7 +171005,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -170893,7 +171026,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ] } @@ -171036,19 +171169,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 393, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L393" } ], "signatures": [ @@ -171063,7 +171196,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" } ], "typeParameters": [ @@ -171136,7 +171269,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" } ], "parameters": [ @@ -171288,19 +171421,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 398, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 399, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L447" } ], "signatures": [ @@ -171315,7 +171448,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 398, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" } ], "typeParameters": [ @@ -171388,7 +171521,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 399, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" } ], "parameters": [ @@ -171530,19 +171663,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1727, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1727" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1727" } ], "signatures": [ @@ -171557,7 +171690,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" } ], "typeParameters": [ @@ -171634,7 +171767,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" } ], "parameters": [ @@ -171685,7 +171818,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "signatures": [ @@ -171721,7 +171854,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "parameters": [ @@ -171927,7 +172060,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "signatures": [ @@ -172031,7 +172164,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "typeParameters": [ @@ -172138,7 +172271,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" } ], "signatures": [ @@ -172240,7 +172373,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" } ], "typeParameters": [ @@ -172684,25 +172817,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1738, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1751, + "line": 1752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1752" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1756, + "line": 1757, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1757" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1815, + "line": 1816, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1816" } ], "signatures": [ @@ -172717,7 +172850,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1738, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" } ], "typeParameters": [ @@ -172772,58 +172905,137 @@ } ], "type": { - "type": "reference", - "target": 194, - "typeArguments": [ - { - "type": "reference", - "target": 197, - "name": "ClientOptions", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.ClientOptions", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 198, - "name": "Schema", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Schema", - "refersToTypeParameter": true - }, + "type": "intersection", + "types": [ { "type": "reference", - "target": { - "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "NonNullableColumn" - }, + "target": 194, "typeArguments": [ { "type": "reference", - "target": 199, - "name": "Row", + "target": 197, + "name": "ClientOptions", "package": "@supabase/postgrest-js", - "qualifiedName": "default.Row", + "qualifiedName": "default.ClientOptions", "refersToTypeParameter": true }, { "type": "reference", - "target": 443, - "name": "ColumnName", + "target": 198, + "name": "Schema", "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "NonNullableColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 199, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 443, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NonNullableColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "NarrowResultColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 200, + "name": "Result", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Result", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 443, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NarrowResultColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": 201, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 202, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 203, + "name": "Method", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Method", "refersToTypeParameter": true } ], - "name": "NonNullableColumn", - "package": "@supabase/postgrest-js" + "name": "PostgrestFilterBuilder", + "package": "@supabase/postgrest-js", + "qualifiedName": "default" }, { "type": "reference", - "target": { - "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "NarrowResultColumn" - }, + "target": 194, "typeArguments": [ + { + "type": "reference", + "target": 197, + "name": "ClientOptions", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.ClientOptions", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 198, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 199, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, { "type": "reference", "target": 200, @@ -172834,43 +173046,34 @@ }, { "type": "reference", - "target": 443, - "name": "ColumnName", + "target": 201, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 202, + "name": "Relationships", "package": "@supabase/postgrest-js", + "qualifiedName": "default.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 203, + "name": "Method", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Method", "refersToTypeParameter": true } ], - "name": "NarrowResultColumn", - "package": "@supabase/postgrest-js" - }, - { - "type": "reference", - "target": 201, - "name": "RelationName", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.RelationName", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 202, - "name": "Relationships", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Relationships", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 203, - "name": "Method", + "name": "PostgrestFilterBuilder", "package": "@supabase/postgrest-js", - "qualifiedName": "default.Method", - "refersToTypeParameter": true + "qualifiedName": "default" } - ], - "name": "PostgrestFilterBuilder", - "package": "@supabase/postgrest-js", - "qualifiedName": "default" + ] } }, { @@ -172882,9 +173085,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1751, + "line": 1752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1752" } ], "typeParameters": [ @@ -172971,9 +173174,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1756, + "line": 1757, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1757" } ], "parameters": [ @@ -173029,7 +173232,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" } ], "signatures": [ @@ -173068,7 +173271,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" } ], "typeParameters": [ @@ -173252,9 +173455,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1974, + "line": 1976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1974" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1976" } ], "signatures": [ @@ -173487,9 +173690,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1974, + "line": 1976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1974" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1976" } ], "parameters": [ @@ -173562,9 +173765,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1979, + "line": 1981, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1981" } ], "type": { @@ -173591,9 +173794,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1979, + "line": 1981, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1981" } ], "type": { @@ -173612,9 +173815,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1979, + "line": 1981, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1981" } ] } @@ -173943,31 +174146,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" } ], "signatures": [ @@ -173984,7 +174187,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" } ], "typeParameters": [ @@ -174045,7 +174248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -174066,7 +174269,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -174087,7 +174290,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -174107,7 +174310,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ] } @@ -174137,7 +174340,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" } ], "parameters": [ @@ -174182,7 +174385,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -174203,7 +174406,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -174224,7 +174427,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -174244,7 +174447,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ] } @@ -174300,7 +174503,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" } ], "typeParameters": [ @@ -174361,7 +174564,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -174382,7 +174585,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -174403,7 +174606,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -174423,7 +174626,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ] } @@ -174479,7 +174682,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" } ], "parameters": [ @@ -174524,7 +174727,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -174545,7 +174748,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -174566,7 +174769,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -174586,7 +174789,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ] } @@ -174757,19 +174960,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1540, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1540" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1540" } ], "signatures": [ @@ -174784,7 +174987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" } ], "typeParameters": [ @@ -174873,7 +175076,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" } ], "parameters": [ @@ -174936,7 +175139,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "signatures": [ @@ -175100,7 +175303,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "typeParameters": [ @@ -175155,7 +175358,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -175175,7 +175378,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -175200,7 +175403,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -175220,7 +175423,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -175453,7 +175656,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "signatures": [ @@ -175581,7 +175784,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "parameters": [ @@ -175675,7 +175878,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -175704,7 +175907,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -175725,7 +175928,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ] } @@ -175885,19 +176088,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1383, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1439, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1439" } ], "signatures": [ @@ -175912,7 +176115,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" } ], "typeParameters": [ @@ -175971,7 +176174,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1383, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" } ], "parameters": [ @@ -176140,19 +176343,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1190" } ], "signatures": [ @@ -176167,7 +176370,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" } ], "typeParameters": [ @@ -176226,7 +176429,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" } ], "parameters": [ @@ -176403,19 +176606,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1253" } ], "signatures": [ @@ -176430,7 +176633,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" } ], "typeParameters": [ @@ -176489,7 +176692,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" } ], "parameters": [ @@ -176658,19 +176861,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1314, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1314" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1314" } ], "signatures": [ @@ -176685,7 +176888,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" } ], "typeParameters": [ @@ -176744,7 +176947,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" } ], "parameters": [ @@ -176921,19 +177124,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1377" } ], "signatures": [ @@ -176948,7 +177151,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" } ], "typeParameters": [ @@ -177007,7 +177210,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" } ], "parameters": [ @@ -177106,19 +177309,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 638, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 647, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L647" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L647" } ], "signatures": [ @@ -177133,7 +177336,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 638, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" } ], "typeParameters": [ @@ -177192,7 +177395,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" } ], "parameters": [ @@ -177291,19 +177494,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 633, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L633" } ], "signatures": [ @@ -177318,7 +177521,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "typeParameters": [ @@ -177377,7 +177580,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" } ], "parameters": [ @@ -177424,7 +177627,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "signatures": [ @@ -177464,7 +177667,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "parameters": [ @@ -177518,7 +177721,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "signatures": [ @@ -177626,7 +177829,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "typeParameters": [ @@ -177755,7 +177958,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "signatures": [ @@ -177799,7 +178002,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "type": { @@ -177832,7 +178035,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "signatures": [ @@ -177960,7 +178163,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "typeParameters": [ @@ -178211,7 +178414,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "signatures": [ @@ -178247,7 +178450,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "parameters": [ @@ -178304,7 +178507,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "signatures": [ @@ -178408,7 +178611,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "typeParameters": [ @@ -178508,7 +178711,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "signatures": [ @@ -178610,7 +178813,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "type": { @@ -178900,19 +179103,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1556, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1664, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1664" } ], "signatures": [ @@ -178927,7 +179130,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" } ], "typeParameters": [ @@ -178999,7 +179202,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1554, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" } ], "type": { @@ -179020,7 +179223,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1554, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" } ], "type": { @@ -179053,7 +179256,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1554, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" } ] } @@ -179076,7 +179279,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1556, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" } ], "parameters": [ @@ -179132,7 +179335,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1559, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" } ], "type": { @@ -179153,7 +179356,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1559, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" } ], "type": { @@ -179186,7 +179389,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1559, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" } ] } @@ -179213,7 +179416,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "signatures": [ @@ -179249,7 +179452,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "typeParameters": [ @@ -179325,7 +179528,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "signatures": [ @@ -179340,7 +179543,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "parameters": [ @@ -179441,7 +179644,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "signatures": [ @@ -179456,7 +179659,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "parameters": [ @@ -179566,7 +179769,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "signatures": [ @@ -179608,7 +179811,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "type": { @@ -179767,7 +179970,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 95, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" } ], "typeParameters": [ @@ -179952,7 +180155,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "signatures": [ @@ -180006,7 +180209,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "typeParameters": [ @@ -180116,7 +180319,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -180142,7 +180345,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -180233,7 +180436,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "type": { @@ -180470,7 +180673,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 74, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" } ], "type": { @@ -180505,7 +180708,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 78, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" } ], "type": { @@ -180534,7 +180737,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" } ], "type": { @@ -180563,7 +180766,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 77, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" } ], "type": { @@ -180584,7 +180787,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 73, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" } ] } @@ -180656,7 +180859,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" } ], "type": { @@ -180883,7 +181086,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" } ], "type": { @@ -180925,7 +181128,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" } ], "type": { @@ -180946,7 +181149,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" } ], "type": { @@ -180967,7 +181170,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" } ], "type": { @@ -180991,7 +181194,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" } ], "type": { @@ -181015,7 +181218,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" } ], "type": { @@ -181034,7 +181237,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1749, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" } ], "signatures": [ @@ -181241,7 +181444,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1749, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" } ], "parameters": [ @@ -181321,7 +181524,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1752, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1752" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1752" } ], "type": { @@ -181354,7 +181557,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1751, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1751" } ] } @@ -181664,19 +181867,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1086, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" } ], "signatures": [ @@ -181691,7 +181894,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" } ], "typeParameters": [ @@ -181766,7 +181969,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 942, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" } ], "type": { @@ -181786,7 +181989,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 942, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" } ] } @@ -181863,7 +182066,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 946, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L946" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L946" } ], "type": { @@ -181896,7 +182099,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 945, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L945" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L945" } ] } @@ -181979,7 +182182,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" } ], "typeParameters": [ @@ -182056,7 +182259,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 959, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" } ], "type": { @@ -182076,7 +182279,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 959, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" } ] } @@ -182154,7 +182357,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 963, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L963" } ], "type": { @@ -182188,7 +182391,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 964, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L964" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L964" } ], "type": { @@ -182208,7 +182411,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 962, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L962" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L962" } ] } @@ -182293,7 +182496,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 878, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" } ], "signatures": [ @@ -183010,7 +183213,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 878, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" } ], "typeParameters": [ @@ -183206,7 +183409,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 892, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L892" } ], "type": { @@ -183264,7 +183467,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 891, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L891" } ], "type": { @@ -183284,7 +183487,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 890, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L890" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L890" } ] } @@ -183375,7 +183578,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" } ], "signatures": [ @@ -183551,7 +183754,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" } ], "typeParameters": [ @@ -183634,7 +183837,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1595, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" } ], "type": { @@ -183654,7 +183857,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1595, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" } ] } @@ -183777,7 +183980,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1601, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1601" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1601" } ], "type": { @@ -183810,7 +184013,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1600, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1600" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1600" } ] } @@ -184313,19 +184516,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1391, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1391" } ], "signatures": [ @@ -184340,7 +184543,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" } ], "typeParameters": [ @@ -184415,7 +184618,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1145, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" } ], "type": { @@ -184435,7 +184638,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1145, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" } ] } @@ -184512,7 +184715,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1151" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1151" } ], "type": { @@ -184546,7 +184749,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1150, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1150" } ], "type": { @@ -184567,7 +184770,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1149, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1149" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1149" } ], "type": { @@ -184587,7 +184790,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1148, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1148" } ] } @@ -184670,7 +184873,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" } ], "typeParameters": [ @@ -184747,7 +184950,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1164, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" } ], "type": { @@ -184767,7 +184970,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1164, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" } ] } @@ -184845,7 +185048,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1170, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1170" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1170" } ], "type": { @@ -184879,7 +185082,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1171, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1171" } ], "type": { @@ -184900,7 +185103,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1169, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1169" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1169" } ], "type": { @@ -184921,7 +185124,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1168" } ], "type": { @@ -184941,7 +185144,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1167, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1167" } ] } @@ -185045,7 +185248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 12, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" } ], "typeParameters": [ @@ -185155,7 +185358,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -185175,7 +185378,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -185216,7 +185419,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "signatures": [ @@ -185270,7 +185473,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "typeParameters": [ @@ -185399,7 +185602,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -185420,7 +185623,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -185647,7 +185850,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -185673,7 +185876,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -185692,7 +185895,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -185734,7 +185937,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 128, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" } ], "type": { @@ -185755,7 +185958,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -185776,7 +185979,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" } ], "type": { @@ -185797,7 +186000,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -185818,7 +186021,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -185842,7 +186045,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -185868,7 +186071,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -185890,7 +186093,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ] } @@ -185990,7 +186193,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -186017,7 +186220,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -186252,7 +186455,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -186284,7 +186487,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -186311,7 +186514,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -186359,7 +186562,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" } ], "type": { @@ -186388,7 +186591,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -186415,7 +186618,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" } ], "type": { @@ -186442,7 +186645,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -186471,7 +186674,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -186503,7 +186706,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -186535,7 +186738,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" } ], "type": { @@ -186559,7 +186762,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "signatures": [ @@ -186681,7 +186884,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "parameters": [ @@ -186728,7 +186931,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "signatures": [ @@ -186815,7 +187018,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "type": { @@ -186853,7 +187056,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "signatures": [ @@ -187001,7 +187204,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "parameters": [ @@ -187057,7 +187260,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 850, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" } ], "type": { @@ -187095,7 +187298,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 853, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" } ], "type": { @@ -187137,7 +187340,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 855, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" } ], "type": { @@ -187184,7 +187387,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 852, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" } ], "type": { @@ -187230,7 +187433,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "type": { @@ -187268,7 +187471,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 854, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" } ], "type": { @@ -187289,7 +187492,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 849, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" } ] } @@ -187384,7 +187587,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "signatures": [ @@ -187426,7 +187629,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "type": { @@ -187479,7 +187682,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "signatures": [ @@ -187609,7 +187812,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "parameters": [ @@ -187684,7 +187887,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -187713,7 +187916,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -187734,7 +187937,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ] } @@ -187760,7 +187963,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "signatures": [ @@ -187794,7 +187997,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "parameters": [ @@ -187988,7 +188191,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "signatures": [ @@ -188090,7 +188293,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "typeParameters": [ @@ -188488,31 +188691,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" } ], "signatures": [ @@ -188527,7 +188730,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" } ], "typeParameters": [ @@ -188588,7 +188791,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -188609,7 +188812,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -188630,7 +188833,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -188650,7 +188853,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ] } @@ -188673,7 +188876,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" } ], "parameters": [ @@ -188718,7 +188921,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -188739,7 +188942,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -188760,7 +188963,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -188780,7 +188983,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ] } @@ -188829,7 +189032,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" } ], "typeParameters": [ @@ -188890,7 +189093,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -188911,7 +189114,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -188932,7 +189135,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -188952,7 +189155,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ] } @@ -189001,7 +189204,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" } ], "parameters": [ @@ -189046,7 +189249,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -189067,7 +189270,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -189088,7 +189291,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -189108,7 +189311,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ] } @@ -189135,7 +189338,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "signatures": [ @@ -189299,7 +189502,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "typeParameters": [ @@ -189354,7 +189557,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -189374,7 +189577,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -189399,7 +189602,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -189419,7 +189622,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -189650,7 +189853,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "signatures": [ @@ -189776,7 +189979,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "parameters": [ @@ -189870,7 +190073,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -189899,7 +190102,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -189920,7 +190123,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ] } @@ -189948,7 +190151,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "signatures": [ @@ -189988,7 +190191,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "parameters": [ @@ -190040,7 +190243,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "signatures": [ @@ -190146,7 +190349,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "typeParameters": [ @@ -190273,7 +190476,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "signatures": [ @@ -190315,7 +190518,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "type": { @@ -190336,7 +190539,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "signatures": [ @@ -190462,7 +190665,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "typeParameters": [ @@ -190703,7 +190906,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "signatures": [ @@ -190739,7 +190942,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "parameters": [ @@ -190794,7 +190997,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "signatures": [ @@ -190896,7 +191099,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "typeParameters": [ @@ -190986,7 +191189,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "signatures": [ @@ -191088,7 +191291,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "type": { @@ -191121,7 +191324,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "signatures": [ @@ -191157,7 +191360,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "typeParameters": [ @@ -191233,7 +191436,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "signatures": [ @@ -191248,7 +191451,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "parameters": [ @@ -191349,7 +191552,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "signatures": [ @@ -191364,7 +191567,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "parameters": [ @@ -191474,7 +191677,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "signatures": [ @@ -191516,7 +191719,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "type": { @@ -191671,7 +191874,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" } ], "typeParameters": [ @@ -191823,7 +192026,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L25" } ], "type": { @@ -191842,7 +192045,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L24" } ], "type": { @@ -191861,7 +192064,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L23" } ], "type": { @@ -191885,7 +192088,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -191911,7 +192114,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -191935,7 +192138,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L22" } ], "type": { @@ -191955,7 +192158,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 21, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L21" } ], "extendedTypes": [ @@ -191988,7 +192191,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L19" } ], "type": { @@ -192016,7 +192219,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L18" } ], "type": { @@ -192039,7 +192242,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L17" } ], "type": { @@ -192060,7 +192263,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -192086,7 +192289,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -192110,7 +192313,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L16" } ], "type": { @@ -192130,7 +192333,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 15, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L15" } ], "typeParameters": [ @@ -192165,7 +192368,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/common/common.ts#L81" } ], "type": { @@ -192190,7 +192393,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/common/common.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/common/common.ts#L82" } ], "type": { @@ -192210,7 +192413,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/common/common.ts#L81" } ] } @@ -192227,7 +192430,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L32" } ], "typeParameters": [ @@ -192275,7 +192478,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 33, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L33" } ], "typeParameters": [ @@ -192317,7 +192520,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L31" } ], "typeParameters": [ @@ -192375,7 +192578,7 @@ "fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" } ], "typeParameters": [ @@ -192960,7 +193163,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L16" } ], "type": { @@ -192983,7 +193186,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L21" } ], "type": { @@ -193007,7 +193210,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L17" } ], "type": { @@ -193031,7 +193234,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L22" } ], "type": { @@ -193055,7 +193258,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L19" } ], "type": { @@ -193079,7 +193282,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L18" } ], "type": { @@ -193103,7 +193306,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L20" } ], "type": { @@ -193128,7 +193331,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L16" } ] } @@ -197032,9 +197235,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 137, + "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L138" } ], "type": { @@ -197051,9 +197254,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 139, + "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L140" } ], "type": { @@ -197070,9 +197273,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 138, + "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L139" } ], "type": { @@ -197089,9 +197292,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 140, + "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L141" } ], "type": { @@ -197109,9 +197312,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 136, + "line": 137, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L137" } ] }, @@ -197131,9 +197334,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 130, + "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L131" } ], "type": { @@ -197150,9 +197353,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 133, + "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L134" } ], "type": { @@ -197169,9 +197372,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 131, + "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L132" } ], "type": { @@ -197188,9 +197391,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 132, + "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L133" } ], "type": { @@ -197208,9 +197411,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 129, + "line": 130, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L130" } ] }, @@ -197232,7 +197435,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L33" } ], "type": { @@ -197251,7 +197454,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L34" } ], "type": { @@ -197270,7 +197473,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L32" } ], "type": { @@ -197290,7 +197493,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L31" } ] }, @@ -197310,9 +197513,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 147, + "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L148" } ], "type": { @@ -197329,9 +197532,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 146, + "line": 147, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L147" } ], "type": { @@ -197348,9 +197551,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 144, + "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L145" } ], "type": { @@ -197367,9 +197570,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 145, + "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L146" } ], "type": { @@ -197387,9 +197590,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 143, + "line": 144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L144" } ] }, @@ -197417,9 +197620,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 237, + "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "signatures": [ @@ -197471,9 +197674,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 237, + "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "parameters": [ @@ -197544,9 +197747,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 176, + "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L177" } ], "type": { @@ -197587,9 +197790,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 178, + "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L179" } ], "type": { @@ -197608,9 +197811,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 240, + "line": 241, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L241" } ], "type": { @@ -197630,9 +197833,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 180, + "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L181" } ], "type": { @@ -197652,9 +197855,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 179, + "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L180" } ], "type": { @@ -197673,9 +197876,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 241, + "line": 242, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L242" } ], "type": { @@ -197695,9 +197898,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 177, + "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L178" } ], "type": { @@ -197724,9 +197927,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 239, + "line": 240, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L240" } ], "type": { @@ -197743,9 +197946,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 192, + "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "getSignature": { @@ -197757,9 +197960,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 192, + "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "type": { @@ -197777,9 +197980,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 200, + "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "getSignature": { @@ -197791,9 +197994,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 200, + "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "type": { @@ -197817,9 +198020,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 204, + "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "getSignature": { @@ -197831,9 +198034,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 204, + "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "type": { @@ -197857,15 +198060,15 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 184, + "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L185" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 188, + "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "getSignature": { @@ -197877,9 +198080,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 184, + "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L185" } ], "type": { @@ -197901,9 +198104,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 188, + "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "parameters": [ @@ -197939,9 +198142,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 196, + "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "getSignature": { @@ -197953,9 +198156,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 196, + "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "type": { @@ -197973,9 +198176,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1077, + "line": 1076, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L1077" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L1076" } ], "signatures": [ @@ -197988,9 +198191,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1077, + "line": 1076, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L1077" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L1076" } ], "parameters": [ @@ -198025,9 +198228,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 747, + "line": 746, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L747" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L746" } ], "signatures": [ @@ -198068,9 +198271,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 747, + "line": 746, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L747" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L746" } ], "parameters": [ @@ -198146,9 +198349,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 749, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L749" } ], "type": { @@ -198166,9 +198369,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 749, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L749" } ] } @@ -198204,9 +198407,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -198224,9 +198427,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ] } @@ -198249,9 +198452,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -198268,9 +198471,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -198287,9 +198490,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -198307,9 +198510,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ] } @@ -198562,105 +198765,105 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 439, + "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L438" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 490, + "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L489" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 516, + "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L515" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 716, + "line": 715, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L715" } ], "signatures": [ @@ -198681,9 +198884,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 439, + "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L438" } ], "parameters": [ @@ -198722,9 +198925,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 440, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "type": { @@ -198742,9 +198945,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 440, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ] } @@ -198767,9 +198970,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 442, + "line": 441, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L441" } ], "signatures": [ @@ -198782,9 +198985,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 442, + "line": 441, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L441" } ], "type": { @@ -198822,9 +199025,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" } ], "typeParameters": [ @@ -198845,9 +199048,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" } ], "indexSignatures": [ @@ -198860,9 +199063,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" } ], "parameters": [ @@ -198924,9 +199127,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 445, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L445" } ], "type": { @@ -198944,9 +199147,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 445, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L445" } ] } @@ -198969,9 +199172,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 447, + "line": 446, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L446" } ], "signatures": [ @@ -198984,9 +199187,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 447, + "line": 446, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L446" } ], "parameters": [ @@ -199048,9 +199251,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" } ], "typeParameters": [ @@ -199071,9 +199274,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" } ], "indexSignatures": [ @@ -199086,9 +199289,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" } ], "parameters": [ @@ -199150,9 +199353,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 450, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L450" } ], "type": { @@ -199170,9 +199373,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 450, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L450" } ] } @@ -199195,9 +199398,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 452, + "line": 451, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L451" } ], "signatures": [ @@ -199210,9 +199413,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 452, + "line": 451, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L451" } ], "parameters": [ @@ -199274,9 +199477,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "typeParameters": [ @@ -199297,9 +199500,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "indexSignatures": [ @@ -199312,9 +199515,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "parameters": [ @@ -199376,9 +199579,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 455, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ], "type": { @@ -199396,9 +199599,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 455, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ] } @@ -199421,9 +199624,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 457, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "signatures": [ @@ -199436,9 +199639,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 457, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "parameters": [ @@ -199522,9 +199725,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "typeParameters": [ @@ -199545,9 +199748,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "indexSignatures": [ @@ -199560,9 +199763,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "parameters": [ @@ -199636,9 +199839,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 462, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "signatures": [ @@ -199651,9 +199854,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 462, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "parameters": [ @@ -199715,9 +199918,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "typeParameters": [ @@ -199738,9 +199941,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "indexSignatures": [ @@ -199753,9 +199956,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "parameters": [ @@ -199829,9 +200032,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 467, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "signatures": [ @@ -199844,9 +200047,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 467, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "parameters": [ @@ -199908,9 +200111,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "typeParameters": [ @@ -199931,9 +200134,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "indexSignatures": [ @@ -199946,9 +200149,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "parameters": [ @@ -200022,9 +200225,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 472, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "signatures": [ @@ -200037,9 +200240,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 472, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "parameters": [ @@ -200101,9 +200304,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "typeParameters": [ @@ -200124,9 +200327,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "indexSignatures": [ @@ -200139,9 +200342,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "parameters": [ @@ -200215,9 +200418,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 477, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "signatures": [ @@ -200230,9 +200433,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 477, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "parameters": [ @@ -200294,9 +200497,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "typeParameters": [ @@ -200317,9 +200520,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "indexSignatures": [ @@ -200332,9 +200535,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "parameters": [ @@ -200425,9 +200628,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 482, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "signatures": [ @@ -200440,9 +200643,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 482, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "parameters": [ @@ -200504,9 +200707,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 490, + "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L489" } ], "parameters": [ @@ -200561,9 +200764,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 491, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ], "type": { @@ -200581,9 +200784,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 491, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ] } @@ -200614,9 +200817,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 492, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "signatures": [ @@ -200629,9 +200832,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 492, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "parameters": [ @@ -200659,9 +200862,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 495, + "line": 494, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L494" } ], "type": { @@ -200680,9 +200883,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 496, + "line": 495, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L495" } ], "type": { @@ -200703,9 +200906,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 498, + "line": 497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L497" } ], "type": { @@ -200724,9 +200927,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 497, + "line": 496, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "type": { @@ -200744,9 +200947,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 496, + "line": 495, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L495" } ] } @@ -200761,9 +200964,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 494, + "line": 493, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "type": { @@ -200781,9 +200984,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 492, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "indexSignatures": [ @@ -200796,9 +200999,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 500, + "line": 499, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L499" } ], "parameters": [ @@ -200859,9 +201062,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" } ], "typeParameters": [ @@ -200882,9 +201085,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" } ], "indexSignatures": [ @@ -200897,9 +201100,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" } ], "parameters": [ @@ -200961,9 +201164,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 504, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ], "type": { @@ -200981,9 +201184,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 504, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ] } @@ -201006,9 +201209,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 505, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ], "signatures": [ @@ -201021,9 +201224,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 505, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ], "parameters": [ @@ -201051,9 +201254,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 508, + "line": 507, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "type": { @@ -201072,9 +201275,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 509, + "line": 508, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L508" } ], "type": { @@ -201095,9 +201298,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 511, + "line": 510, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ], "type": { @@ -201116,9 +201319,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 510, + "line": 509, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L509" } ], "type": { @@ -201136,9 +201339,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 509, + "line": 508, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L508" } ] } @@ -201153,9 +201356,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 513, + "line": 512, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L512" } ], "type": { @@ -201175,9 +201378,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 507, + "line": 506, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ], "type": { @@ -201195,9 +201398,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 505, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ] } @@ -201239,9 +201442,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 516, + "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L515" } ], "typeParameters": [ @@ -201308,9 +201511,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 517, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "type": { @@ -201331,9 +201534,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 517, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ] } @@ -201356,9 +201559,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 518, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L518" } ], "signatures": [ @@ -201371,9 +201574,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 518, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L518" } ], "parameters": [ @@ -201401,9 +201604,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 521, + "line": 520, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ], "type": { @@ -201423,9 +201626,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 522, + "line": 521, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L521" } ], "type": { @@ -201456,9 +201659,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 520, + "line": 519, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ], "type": { @@ -201476,9 +201679,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 518, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L518" } ] } @@ -201520,9 +201723,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "typeParameters": [ @@ -201543,9 +201746,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "indexSignatures": [ @@ -201558,9 +201761,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "parameters": [ @@ -201622,9 +201825,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 526, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L526" } ], "type": { @@ -201645,9 +201848,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 526, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L526" } ] } @@ -201670,9 +201873,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 527, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ], "signatures": [ @@ -201685,9 +201888,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 527, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ], "parameters": [ @@ -201715,9 +201918,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 530, + "line": 529, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L529" } ], "type": { @@ -201737,9 +201940,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 531, + "line": 530, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L530" } ], "type": { @@ -201770,9 +201973,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 529, + "line": 528, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L528" } ], "type": { @@ -201790,9 +201993,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 527, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ] } @@ -201834,9 +202037,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "typeParameters": [ @@ -201857,9 +202060,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "indexSignatures": [ @@ -201872,9 +202075,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "parameters": [ @@ -201936,9 +202139,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 535, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L535" } ], "type": { @@ -201959,9 +202162,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 535, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L535" } ] } @@ -201984,9 +202187,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 536, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ], "signatures": [ @@ -201999,9 +202202,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 536, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ], "parameters": [ @@ -202029,9 +202232,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 539, + "line": 538, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L538" } ], "type": { @@ -202051,9 +202254,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 540, + "line": 539, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "type": { @@ -202084,9 +202287,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 538, + "line": 537, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L537" } ], "type": { @@ -202104,9 +202307,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 536, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ] } @@ -202148,9 +202351,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "typeParameters": [ @@ -202171,9 +202374,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "indexSignatures": [ @@ -202186,9 +202389,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "parameters": [ @@ -202250,9 +202453,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 544, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L544" } ], "type": { @@ -202273,9 +202476,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 544, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L544" } ] } @@ -202298,9 +202501,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 545, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ], "signatures": [ @@ -202313,9 +202516,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 545, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ], "parameters": [ @@ -202343,9 +202546,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 548, + "line": 547, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L547" } ], "type": { @@ -202365,9 +202568,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 549, + "line": 548, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "type": { @@ -202398,9 +202601,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 547, + "line": 546, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L546" } ], "type": { @@ -202418,9 +202621,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 545, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ] } @@ -202462,9 +202665,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "typeParameters": [ @@ -202485,9 +202688,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "indexSignatures": [ @@ -202500,9 +202703,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "parameters": [ @@ -202574,9 +202777,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 555, + "line": 554, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L554" } ], "signatures": [ @@ -202589,9 +202792,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 555, + "line": 554, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L554" } ], "parameters": [ @@ -202636,9 +202839,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "signatures": [ @@ -202670,9 +202873,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "typeParameters": [ @@ -202693,9 +202896,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "indexSignatures": [ @@ -202708,9 +202911,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "parameters": [ @@ -202773,9 +202976,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 841, + "line": 840, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L840" } ], "signatures": [ @@ -202849,9 +203052,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 841, + "line": 840, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L840" } ], "parameters": [ @@ -202895,9 +203098,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 844, + "line": 843, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L844" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L843" } ], "type": { @@ -202924,9 +203127,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 845, + "line": 844, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L845" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L844" } ], "type": { @@ -202951,9 +203154,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 843, + "line": 842, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L842" } ], "type": { @@ -202984,9 +203187,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 842, + "line": 841, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L841" } ], "indexSignatures": [ @@ -202999,9 +203202,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 846, + "line": 845, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L845" } ], "parameters": [ @@ -203051,9 +203254,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 848, + "line": 847, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L847" } ], "indexSignatures": [ @@ -203066,9 +203269,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 848, + "line": 847, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L847" } ], "parameters": [ @@ -203124,9 +203327,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 276, + "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L277" } ], "signatures": [ @@ -203158,9 +203361,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 276, + "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L277" } ], "parameters": [ @@ -203183,9 +203386,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 278, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L278" } ], "signatures": [ @@ -203198,9 +203401,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 278, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L278" } ], "parameters": [ @@ -203277,9 +203480,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 949, + "line": 948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L948" } ], "signatures": [ @@ -203311,9 +203514,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 949, + "line": 948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L948" } ], "type": { @@ -203332,9 +203535,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L406" } ], "signatures": [ @@ -203374,9 +203577,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L406" } ], "parameters": [ @@ -203397,9 +203600,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 407, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L407" } ], "indexSignatures": [ @@ -203412,9 +203615,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 407, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L407" } ], "parameters": [ @@ -203456,9 +203659,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 409, + "line": 408, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L408" } ], "indexSignatures": [ @@ -203471,9 +203674,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 409, + "line": 408, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L408" } ], "parameters": [ @@ -203529,9 +203732,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 934, + "line": 933, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L933" } ], "signatures": [ @@ -203571,9 +203774,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 934, + "line": 933, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L933" } ], "parameters": [ @@ -203619,9 +203822,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "signatures": [ @@ -203653,9 +203856,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "parameters": [ @@ -203676,9 +203879,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "indexSignatures": [ @@ -203691,9 +203894,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "parameters": [ @@ -203749,9 +203952,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 919, + "line": 918, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L919" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L918" } ], "signatures": [ @@ -203783,9 +203986,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 919, + "line": 918, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L919" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L918" } ], "parameters": [ @@ -203855,9 +204058,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 175, + "line": 176, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L176" } ] }, @@ -203879,7 +204082,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L235" } ], "signatures": [ @@ -203933,7 +204136,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L235" } ], "parameters": [ @@ -204087,7 +204290,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L99" } ], "type": { @@ -204110,7 +204313,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 99, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L99" } ], "signatures": [ @@ -204125,7 +204328,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 99, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L99" } ], "type": { @@ -204171,7 +204374,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L98" } ], "type": { @@ -204200,7 +204403,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L100" } ], "type": { @@ -204229,7 +204432,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L96" } ], "type": { @@ -204255,7 +204458,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L111" } ], "type": { @@ -204498,7 +204701,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "type": { @@ -204514,7 +204717,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "indexSignatures": [ @@ -204529,7 +204732,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "parameters": [ @@ -204566,7 +204769,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L102" } ], "type": { @@ -204588,7 +204791,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L109" } ], "type": { @@ -204614,7 +204817,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "type": { @@ -204630,7 +204833,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "indexSignatures": [ @@ -204645,7 +204848,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "parameters": [ @@ -204682,7 +204885,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L107" } ], "type": { @@ -204702,7 +204905,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 116, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L116" } ], "type": { @@ -204730,7 +204933,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L112" } ], "type": { @@ -204751,7 +204954,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L114" } ], "type": { @@ -204777,7 +204980,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L113" } ], "type": { @@ -204796,7 +204999,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "getSignature": { @@ -204810,7 +205013,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "type": { @@ -204841,7 +205044,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "getSignature": { @@ -204855,7 +205058,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "type": { @@ -204886,7 +205089,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 118, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L118" } ], "getSignature": { @@ -204900,7 +205103,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 118, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L118" } ], "type": { @@ -204920,7 +205123,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L130" } ], "getSignature": { @@ -204934,7 +205137,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L130" } ], "type": { @@ -204959,7 +205162,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L134" } ], "getSignature": { @@ -204973,7 +205176,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L134" } ], "type": { @@ -204993,7 +205196,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 138, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L138" } ], "getSignature": { @@ -205007,7 +205210,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 138, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L138" } ], "type": { @@ -205032,7 +205235,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 145, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L145" } ], "getSignature": { @@ -205046,7 +205249,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 145, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L145" } ], "type": { @@ -205075,7 +205278,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "getSignature": { @@ -205089,7 +205292,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "type": { @@ -205105,7 +205308,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "signatures": [ @@ -205120,7 +205323,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "parameters": [ @@ -205157,7 +205360,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L152" } ], "getSignature": { @@ -205171,7 +205374,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L152" } ], "type": { @@ -205197,7 +205400,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "getSignature": { @@ -205211,7 +205414,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "type": { @@ -205229,7 +205432,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "signatures": [ @@ -205244,7 +205447,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "type": { @@ -205269,7 +205472,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "getSignature": { @@ -205283,7 +205486,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "type": { @@ -205306,7 +205509,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 178, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L178" } ], "type": { @@ -205342,7 +205545,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 179, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L179" } ], "type": { @@ -205378,7 +205581,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 180, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L180" } ], "type": { @@ -205414,7 +205617,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 177, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L177" } ], "type": { @@ -205451,7 +205654,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ] } @@ -205469,7 +205672,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L122" } ], "getSignature": { @@ -205483,7 +205686,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L122" } ], "type": { @@ -205503,7 +205706,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 126, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L126" } ], "getSignature": { @@ -205517,7 +205720,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 126, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L126" } ], "type": { @@ -205539,7 +205742,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 156, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L156" } ], "getSignature": { @@ -205553,7 +205756,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 156, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L156" } ], "type": { @@ -205578,7 +205781,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L427" } ], "signatures": [ @@ -205630,7 +205833,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L427" } ], "parameters": [ @@ -205681,7 +205884,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L255" } ], "signatures": [ @@ -205715,7 +205918,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L255" } ], "type": { @@ -205736,7 +205939,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L387" } ], "signatures": [ @@ -205770,7 +205973,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L387" } ], "type": { @@ -205796,7 +205999,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L314" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L314" } ], "signatures": [ @@ -205830,7 +206033,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L314" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L314" } ], "parameters": [ @@ -205915,7 +206118,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L302" } ], "signatures": [ @@ -205958,7 +206161,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L302" } ], "type": { @@ -205979,7 +206182,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 334, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L334" } ], "signatures": [ @@ -206013,7 +206216,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 334, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L334" } ], "type": { @@ -206040,7 +206243,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L396" } ], "signatures": [ @@ -206082,7 +206285,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L396" } ], "type": { @@ -206103,7 +206306,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L405" } ], "signatures": [ @@ -206145,7 +206348,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L405" } ], "type": { @@ -206166,7 +206369,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L414" } ], "signatures": [ @@ -206208,7 +206411,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L414" } ], "type": { @@ -206229,7 +206432,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L378" } ], "signatures": [ @@ -206271,7 +206474,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L378" } ], "parameters": [ @@ -206329,7 +206532,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L508" } ], "signatures": [ @@ -206363,7 +206566,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L508" } ], "parameters": [ @@ -206402,7 +206605,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L449" } ], "signatures": [ @@ -206436,7 +206639,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L449" } ], "parameters": [ @@ -206472,7 +206675,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 359, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L359" } ], "signatures": [ @@ -206506,7 +206709,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 359, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L359" } ], "type": { @@ -206543,7 +206746,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "signatures": [ @@ -206577,7 +206780,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "parameters": [ @@ -206635,7 +206838,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 498, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L498" } ], "signatures": [ @@ -206669,7 +206872,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 498, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L498" } ], "type": { @@ -206701,7 +206904,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 475, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L475" } ], "signatures": [ @@ -206768,7 +206971,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 475, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L475" } ], "parameters": [ @@ -206861,7 +207064,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 93, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L93" } ] }, @@ -206883,7 +207086,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "signatures": [ @@ -206927,7 +207130,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "parameters": [ @@ -207019,7 +207222,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 66, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L66" } ], "type": { @@ -207041,7 +207244,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "getSignature": { @@ -207055,7 +207258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "type": { @@ -207096,7 +207299,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 41, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L41" } ] }, @@ -207129,7 +207332,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 153, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" } ], "signatures": [ @@ -207173,7 +207376,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 153, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" } ], "type": { @@ -207287,7 +207490,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 178, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" } ], "signatures": [ @@ -207331,7 +207534,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 178, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" } ], "type": { @@ -207359,7 +207562,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 50, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" } ] }, @@ -207383,7 +207586,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" } ], "type": { @@ -207404,7 +207607,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" } ], "type": { @@ -207425,7 +207628,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" } ], "type": { @@ -207446,7 +207649,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 4, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" } ], "type": { @@ -207467,7 +207670,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 2, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" } ], "type": { @@ -207488,7 +207691,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "type": { @@ -207504,7 +207707,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "signatures": [ @@ -207519,7 +207722,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "parameters": [ @@ -207562,7 +207765,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" } ], "type": { @@ -207581,7 +207784,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "type": { @@ -207604,7 +207807,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "signatures": [ @@ -207619,7 +207822,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "parameters": [ @@ -207673,7 +207876,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "type": { @@ -207696,7 +207899,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "signatures": [ @@ -207711,7 +207914,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "parameters": [ @@ -207765,7 +207968,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "type": { @@ -207788,7 +207991,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "signatures": [ @@ -207803,7 +208006,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "parameters": [ @@ -207857,7 +208060,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "type": { @@ -207880,7 +208083,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "signatures": [ @@ -207895,7 +208098,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "parameters": [ @@ -207951,7 +208154,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 3, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" } ], "type": { @@ -207972,7 +208175,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 8, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" } ], "type": { @@ -207993,7 +208196,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" } ], "type": { @@ -208014,7 +208217,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 7, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" } ], "type": { @@ -208033,7 +208236,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "signatures": [ @@ -208056,7 +208259,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "parameters": [ @@ -208106,7 +208309,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "signatures": [ @@ -208129,7 +208332,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "parameters": [ @@ -208178,7 +208381,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "signatures": [ @@ -208201,7 +208404,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "parameters": [ @@ -208251,7 +208454,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "signatures": [ @@ -208274,7 +208477,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "parameters": [ @@ -208358,7 +208561,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 1, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" } ] }, @@ -208396,7 +208599,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "signatures": [ @@ -208411,7 +208614,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L59" } ], "parameters": [ @@ -208487,7 +208690,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "indexSignatures": [ @@ -208502,7 +208705,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L61" } ], "parameters": [ @@ -208534,9 +208737,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 21, + "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ], "type": { @@ -208557,9 +208760,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 22, + "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ], "type": { @@ -208590,9 +208793,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -208615,9 +208818,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -208636,9 +208839,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -208662,9 +208865,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -208682,9 +208885,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ] } @@ -208709,9 +208912,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -208734,9 +208937,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -208755,9 +208958,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -208775,9 +208978,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ] } @@ -208802,9 +209005,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 36, + "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L37" } ], "type": { @@ -208822,9 +209025,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 22, + "line": 23, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ] } @@ -208840,9 +209043,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 21, + "line": 22, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ] } @@ -208857,9 +209060,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 127, + "line": 128, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ], "type": { @@ -208891,7 +209094,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ], "type": { @@ -208916,7 +209119,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "type": { @@ -208932,7 +209135,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "signatures": [ @@ -208984,7 +209187,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L72" } ], "type": { @@ -209016,7 +209219,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L83" } ], "type": { @@ -209037,7 +209240,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L71" } ], "type": { @@ -209069,7 +209272,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L79" } ], "type": { @@ -209095,7 +209298,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "type": { @@ -209111,7 +209314,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "indexSignatures": [ @@ -209126,7 +209329,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "parameters": [ @@ -209164,7 +209367,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "type": { @@ -209180,7 +209383,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "signatures": [ @@ -209243,7 +209446,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L67" } ], "type": { @@ -209264,7 +209467,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L77" } ], "type": { @@ -209290,7 +209493,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "type": { @@ -209306,7 +209509,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "signatures": [ @@ -209375,7 +209578,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L78" } ], "type": { @@ -209401,7 +209604,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "type": { @@ -209417,7 +209620,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "indexSignatures": [ @@ -209432,7 +209635,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "parameters": [ @@ -209470,7 +209673,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "type": { @@ -209486,7 +209689,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "signatures": [ @@ -209531,7 +209734,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L66" } ], "type": { @@ -209552,7 +209755,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L65" } ], "type": { @@ -209575,7 +209778,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L69" } ], "type": { @@ -209596,7 +209799,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L80" } ], "type": { @@ -209617,7 +209820,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L81" } ], "type": { @@ -209640,7 +209843,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ] } @@ -209657,7 +209860,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ], "type": { @@ -209680,7 +209883,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L34" } ], "type": { @@ -209701,7 +209904,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L37" } ], "type": { @@ -209720,7 +209923,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L35" } ], "type": { @@ -209739,7 +209942,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L36" } ], "type": { @@ -209758,7 +209961,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L33" } ], "type": { @@ -209778,7 +209981,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ] } @@ -209793,9 +209996,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 108, + "line": 109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ], "typeParameters": [ @@ -209848,9 +210051,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 112, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L113" } ], "type": { @@ -209880,9 +210083,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 124, + "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L125" } ], "type": { @@ -209907,9 +210110,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 116, + "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L117" } ], "type": { @@ -209936,9 +210139,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 120, + "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L121" } ], "type": { @@ -209956,9 +210159,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 108, + "line": 109, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ] } @@ -209973,9 +210176,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 103, + "line": 104, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "typeParameters": [ @@ -209996,9 +210199,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 103, + "line": 104, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "indexSignatures": [ @@ -210011,9 +210214,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 103, + "line": 104, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "parameters": [ @@ -210099,9 +210302,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 96, + "line": 97, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "typeParameters": [ @@ -210122,9 +210325,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 96, + "line": 97, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "indexSignatures": [ @@ -210137,9 +210340,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 96, + "line": 97, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "parameters": [ @@ -210195,9 +210398,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 98, + "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L99" } ], "type": { @@ -210225,9 +210428,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 99, + "line": 100, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ], "type": { @@ -210241,9 +210444,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 99, + "line": 100, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ] } @@ -210258,9 +210461,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 100, + "line": 101, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L101" } ], "type": { @@ -210292,9 +210495,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 97, + "line": 98, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L98" } ] } @@ -210311,9 +210514,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 82, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "typeParameters": [ @@ -210334,9 +210537,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 82, + "line": 83, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "indexSignatures": [ @@ -210349,9 +210552,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 82, + "line": 83, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "parameters": [ @@ -210407,9 +210610,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 84, + "line": 85, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L85" } ], "type": { @@ -210437,9 +210640,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 85, + "line": 86, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L86" } ], "type": { @@ -210459,9 +210662,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 86, + "line": 87, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ], "type": { @@ -210475,9 +210678,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 86, + "line": 87, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ] } @@ -210493,9 +210696,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 83, + "line": 84, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L84" } ] } @@ -210512,9 +210715,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 89, + "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "typeParameters": [ @@ -210535,9 +210738,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 89, + "line": 90, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "indexSignatures": [ @@ -210550,9 +210753,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 89, + "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "parameters": [ @@ -210608,9 +210811,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 91, + "line": 92, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L92" } ], "type": { @@ -210638,9 +210841,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 92, + "line": 93, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L93" } ], "type": { @@ -210660,9 +210863,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 93, + "line": 94, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L94" } ], "type": { @@ -210694,9 +210897,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 90, + "line": 91, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L91" } ] } @@ -210715,7 +210918,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "typeParameters": [ @@ -210738,7 +210941,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "indexSignatures": [ @@ -210753,7 +210956,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "parameters": [ @@ -210799,7 +211002,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L20" } ], "type": { @@ -210835,7 +211038,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L18" } ], "type": { @@ -210865,7 +211068,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L19" } ], "type": { @@ -210884,7 +211087,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L21" } ], "type": { @@ -210921,7 +211124,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ] } @@ -210938,7 +211141,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "typeParameters": [ @@ -210961,7 +211164,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "indexSignatures": [ @@ -210976,7 +211179,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "parameters": [ @@ -211022,7 +211225,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L27" } ], "type": { @@ -211058,7 +211261,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L25" } ], "type": { @@ -211088,7 +211291,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L26" } ], "type": { @@ -211107,7 +211310,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L28" } ], "type": { @@ -211144,7 +211347,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 77, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ] } @@ -211161,7 +211364,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "typeParameters": [ @@ -211184,7 +211387,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -211199,7 +211402,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "parameters": [ @@ -211236,7 +211439,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ] } @@ -211256,7 +211459,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 75, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -211271,7 +211474,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L14" } ], "parameters": [ @@ -211324,7 +211527,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 40, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L40" } ], "type": { @@ -211356,9 +211559,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 150, + "line": 151, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L151" } ], "type": { @@ -211383,7 +211586,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L33" } ], "type": { @@ -211405,7 +211608,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L34" } ], "type": { @@ -211427,7 +211630,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L35" } ], "type": { @@ -211449,7 +211652,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L36" } ], "type": { @@ -211471,7 +211674,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L37" } ], "type": { @@ -211492,7 +211695,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L32" } ] } @@ -214378,7 +214581,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L149" } ], "type": { @@ -214405,7 +214608,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L155" } ], "type": { @@ -214432,7 +214635,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L151" } ], "type": { @@ -214459,7 +214662,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L157" } ], "type": { @@ -214486,7 +214689,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 159, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L159" } ], "type": { @@ -214513,7 +214716,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L153" } ], "type": { @@ -214533,7 +214736,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 147, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L147" } ] }, @@ -214563,7 +214766,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L62" } ], "signatures": [ @@ -214578,7 +214781,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L62" } ], "parameters": [ @@ -214660,7 +214863,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -214684,7 +214887,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -214708,7 +214911,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -214723,7 +214926,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -214746,7 +214949,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -214765,7 +214968,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -214784,7 +214987,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -214812,7 +215015,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -214841,7 +215044,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -214879,7 +215082,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 58, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L58" } ], "extendedTypes": [ @@ -214916,7 +215119,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L34" } ], "signatures": [ @@ -214970,7 +215173,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L34" } ], "parameters": [ @@ -215004,7 +215207,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L36" } ], "indexSignatures": [ @@ -215019,7 +215222,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L36" } ], "parameters": [ @@ -215312,7 +215515,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 87, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L87" } ], "getSignature": { @@ -215355,7 +215558,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 87, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L87" } ], "type": { @@ -215378,7 +215581,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 69, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L69" } ], "getSignature": { @@ -215421,7 +215624,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 69, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L69" } ], "type": { @@ -215445,7 +215648,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "signatures": [ @@ -215541,7 +215744,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "parameters": [ @@ -215600,7 +215803,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ], "type": { @@ -215641,7 +215844,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" } ], "type": { @@ -215681,7 +215884,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "type": { @@ -215722,7 +215925,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -215744,7 +215947,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 187, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" } ] } @@ -215782,7 +215985,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 197, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" } ], "type": { @@ -215818,7 +216021,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 198, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" } ], "type": { @@ -215838,7 +216041,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 196, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" } ] } @@ -215863,7 +216066,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -215882,7 +216085,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" } ], "type": { @@ -215904,7 +216107,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ] } @@ -215941,7 +216144,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "signatures": [ @@ -216053,7 +216256,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "parameters": [ @@ -216107,7 +216310,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -216130,7 +216333,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -216150,7 +216353,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ] } @@ -216167,7 +216370,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" } ], "type": { @@ -216187,7 +216390,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 373, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" } ] } @@ -216212,7 +216415,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "type": { @@ -216231,7 +216434,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ], "type": { @@ -216253,7 +216456,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 377, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" } ] } @@ -216290,7 +216493,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "signatures": [ @@ -216402,7 +216605,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "parameters": [ @@ -216456,7 +216659,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -216479,7 +216682,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -216499,7 +216702,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ] } @@ -216516,7 +216719,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 329, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" } ], "type": { @@ -216536,7 +216739,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 327, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" } ] } @@ -216561,7 +216764,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ], "type": { @@ -216580,7 +216783,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -216602,7 +216805,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ] } @@ -216637,7 +216840,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L54" } ], "signatures": [ @@ -216681,7 +216884,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L54" } ], "parameters": [ @@ -216728,7 +216931,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "signatures": [ @@ -216824,7 +217027,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "parameters": [ @@ -216878,7 +217081,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "type": { @@ -216899,7 +217102,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ], "type": { @@ -216919,7 +217122,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 128, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" } ] } @@ -216944,7 +217147,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 133, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" } ], "type": { @@ -216963,7 +217166,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ], "type": { @@ -216985,7 +217188,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ] } @@ -217022,7 +217225,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "signatures": [ @@ -217120,7 +217323,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "parameters": [ @@ -217210,7 +217413,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ], "type": { @@ -217234,7 +217437,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -217254,7 +217457,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ] } @@ -217279,7 +217482,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ], "type": { @@ -217298,7 +217501,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -217320,7 +217523,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" } ] } @@ -217358,7 +217561,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -217394,7 +217597,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -217468,7 +217671,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -217504,7 +217707,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -217537,7 +217740,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "signatures": [ @@ -217641,7 +217844,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "parameters": [ @@ -217700,7 +217903,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 268, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" } ], "type": { @@ -217741,7 +217944,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "type": { @@ -217781,7 +217984,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 266, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" } ], "type": { @@ -217801,7 +218004,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 265, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" } ] } @@ -217838,7 +218041,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -217861,7 +218064,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -217881,7 +218084,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ] } @@ -217898,7 +218101,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 273, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" } ], "type": { @@ -217918,7 +218121,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ] } @@ -217943,7 +218146,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -217962,7 +218165,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -217984,7 +218187,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -218046,7 +218249,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L11" } ], "extendedTypes": [ @@ -218084,7 +218287,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "signatures": [ @@ -218099,7 +218302,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "parameters": [ @@ -218185,7 +218388,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -218213,7 +218416,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -218241,7 +218444,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -218256,7 +218459,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -218279,7 +218482,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -218298,7 +218501,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -218317,7 +218520,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -218345,7 +218548,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -218374,7 +218577,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -218402,7 +218605,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L11" } ], "extendedTypes": [ @@ -218460,7 +218663,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "signatures": [ @@ -218475,7 +218678,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "parameters": [ @@ -218546,7 +218749,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -218567,7 +218770,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -218602,7 +218805,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -218637,7 +218840,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -218654,7 +218857,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -218677,7 +218880,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -218696,7 +218899,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -218715,7 +218918,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -218743,7 +218946,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -218772,7 +218975,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -218810,7 +219013,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L90" } ], "extendedTypes": [ @@ -218861,7 +219064,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "signatures": [ @@ -218876,7 +219079,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "parameters": [ @@ -218946,7 +219149,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -218972,7 +219175,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -218998,7 +219201,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -219015,7 +219218,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -219038,7 +219241,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -219057,7 +219260,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -219076,7 +219279,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -219104,7 +219307,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -219133,7 +219336,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -219171,7 +219374,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 127, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L127" } ], "extendedTypes": [ @@ -219215,7 +219418,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "signatures": [ @@ -219230,7 +219433,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "parameters": [ @@ -219278,7 +219481,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -219313,7 +219516,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -219348,7 +219551,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -219365,7 +219568,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -219388,7 +219591,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -219407,7 +219610,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -219426,7 +219629,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -219454,7 +219657,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -219483,7 +219686,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -219521,7 +219724,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 108, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L108" } ], "extendedTypes": [ @@ -219565,7 +219768,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "signatures": [ @@ -219580,7 +219783,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "parameters": [ @@ -219639,7 +219842,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -219665,7 +219868,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -219700,7 +219903,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -219735,7 +219938,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -219752,7 +219955,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -219775,7 +219978,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -219794,7 +219997,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -219813,7 +220016,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -219841,7 +220044,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -219870,7 +220073,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -219908,7 +220111,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 137, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L137" } ], "extendedTypes": [ @@ -219954,7 +220157,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 42, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L42" } ], "type": { @@ -219981,7 +220184,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L40" } ], "type": { @@ -220008,7 +220211,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L36" } ], "type": { @@ -220035,7 +220238,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L38" } ], "type": { @@ -220062,7 +220265,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L44" } ], "type": { @@ -220082,7 +220285,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 34, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L34" } ] }, @@ -220106,7 +220309,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L16" } ], "type": { @@ -220128,7 +220331,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L17" } ], "type": { @@ -220149,7 +220352,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L15" } ], "type": { @@ -220168,7 +220371,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L11" } ], "type": { @@ -220187,7 +220390,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L13" } ], "type": { @@ -220206,7 +220409,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L14" } ], "type": { @@ -220225,7 +220428,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L19" } ], "type": { @@ -220246,7 +220449,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L12" } ], "type": { @@ -220267,7 +220470,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L18" } ], "type": { @@ -220287,7 +220490,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 10, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L10" } ] }, @@ -220325,7 +220528,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L549" } ], "type": { @@ -220352,7 +220555,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L550" } ], "type": { @@ -220382,7 +220585,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L548" } ], "type": { @@ -220402,7 +220605,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 547, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L547" } ] }, @@ -220426,7 +220629,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L176" } ], "type": { @@ -220446,7 +220649,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 175, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L175" } ] }, @@ -220486,7 +220689,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L362" } ], "type": { @@ -220515,7 +220718,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L363" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L363" } ], "type": { @@ -220535,7 +220738,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 361, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L361" } ] }, @@ -220573,7 +220776,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 646, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L646" } ], "type": { @@ -220600,7 +220803,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 647, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L647" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L647" } ], "type": { @@ -220622,7 +220825,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 645, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L645" } ] }, @@ -220654,7 +220857,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L296" } ], "type": { @@ -220708,7 +220911,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 285, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L285" } ], "type": { @@ -220733,7 +220936,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 281, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L281" } ] }, @@ -220771,7 +220974,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L59" } ], "type": { @@ -220798,7 +221001,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L63" } ], "type": { @@ -220825,7 +221028,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L53" } ], "type": { @@ -220852,7 +221055,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L65" } ], "type": { @@ -220879,7 +221082,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L61" } ], "type": { @@ -220906,7 +221109,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L57" } ], "type": { @@ -220933,7 +221136,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L55" } ], "type": { @@ -220953,7 +221156,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 51, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L51" } ], "indexSignatures": [ @@ -220976,7 +221179,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L67" } ], "parameters": [ @@ -221041,7 +221244,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L94" } ], "type": { @@ -221076,7 +221279,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L104" } ], "type": { @@ -221105,7 +221308,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L85" } ], "type": { @@ -221141,7 +221344,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L81" } ], "type": { @@ -221183,7 +221386,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L87" } ], "type": { @@ -221219,7 +221422,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L89" } ], "type": { @@ -221257,7 +221460,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L79" } ], "type": { @@ -221292,7 +221495,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L99" } ], "type": { @@ -221319,7 +221522,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L83" } ], "type": { @@ -221348,7 +221551,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 77, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L77" } ] }, @@ -221386,7 +221589,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L119" } ], "type": { @@ -221415,7 +221618,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L125" } ], "type": { @@ -221444,7 +221647,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L127" } ], "type": { @@ -221471,7 +221674,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L121" } ], "type": { @@ -221500,7 +221703,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L129" } ], "type": { @@ -221527,7 +221730,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L113" } ], "type": { @@ -221556,7 +221759,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L131" } ], "type": { @@ -221585,7 +221788,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L133" } ], "type": { @@ -221614,7 +221817,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L117" } ], "type": { @@ -221643,7 +221846,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L123" } ], "type": { @@ -221678,7 +221881,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L138" } ], "type": { @@ -221705,7 +221908,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L115" } ], "type": { @@ -221727,7 +221930,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 111, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L111" } ] }, @@ -221767,7 +221970,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L150" } ], "type": { @@ -221844,7 +222047,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 154, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L154" } ], "type": { @@ -221873,7 +222076,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L162" } ], "type": { @@ -221902,7 +222105,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 172, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L172" } ], "type": { @@ -221946,7 +222149,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 167, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L167" } ], "type": { @@ -221990,7 +222193,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L158" } ], "type": { @@ -222010,7 +222213,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 146, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L146" } ] }, @@ -222048,7 +222251,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L515" } ], "type": { @@ -222075,7 +222278,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L516" } ], "type": { @@ -222107,7 +222310,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L517" } ], "type": { @@ -222136,7 +222339,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 518, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L518" } ], "type": { @@ -222163,7 +222366,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 514, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L514" } ], "type": { @@ -222183,7 +222386,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 513, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L513" } ] }, @@ -222221,7 +222424,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 526, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L526" } ], "type": { @@ -222246,7 +222449,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 525, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L525" } ] }, @@ -222270,7 +222473,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L23" } ], "type": { @@ -222291,7 +222494,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L24" } ], "type": { @@ -222312,7 +222515,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L27" } ], "type": { @@ -222333,7 +222536,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L25" } ], "type": { @@ -222371,7 +222574,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L26" } ], "type": { @@ -222400,7 +222603,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L22" } ] }, @@ -222440,7 +222643,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L491" } ], "type": { @@ -222469,7 +222672,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L492" } ], "type": { @@ -222498,7 +222701,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L490" } ], "type": { @@ -222525,7 +222728,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L489" } ], "type": { @@ -222545,7 +222748,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 488, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L488" } ] }, @@ -222583,7 +222786,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -222608,7 +222811,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -222628,7 +222831,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L501" } ] } @@ -222656,7 +222859,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L502" } ], "type": { @@ -222676,7 +222879,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 500, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L500" } ] }, @@ -222716,7 +222919,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L467" } ], "type": { @@ -222745,7 +222948,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L468" } ], "type": { @@ -222774,7 +222977,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L466" } ], "type": { @@ -222794,7 +222997,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 465, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L465" } ] }, @@ -222834,7 +223037,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L478" } ], "type": { @@ -222861,7 +223064,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -222886,7 +223089,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -222906,7 +223109,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L477" } ] } @@ -222925,7 +223128,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 476, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L476" } ] }, @@ -222963,7 +223166,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 567, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L567" } ], "type": { @@ -222992,7 +223195,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 568, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L568" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L568" } ], "type": { @@ -223021,7 +223224,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L569" } ], "type": { @@ -223050,7 +223253,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L570" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L570" } ], "type": { @@ -223079,7 +223282,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L571" } ], "type": { @@ -223108,7 +223311,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 572, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L572" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L572" } ], "type": { @@ -223137,7 +223340,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 573, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L573" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L573" } ], "type": { @@ -223164,7 +223367,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L566" } ], "type": { @@ -223184,7 +223387,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 565, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L565" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L565" } ] }, @@ -223224,7 +223427,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 583, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L583" } ], "type": { @@ -223251,7 +223454,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 582, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L582" } ], "type": { @@ -223276,7 +223479,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 581, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L581" } ] }, @@ -223298,7 +223501,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L301" } ], "type": { @@ -223318,7 +223521,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 300, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L300" } ] }, @@ -223358,7 +223561,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L384" } ], "type": { @@ -223381,7 +223584,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 383, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L383" } ] }, @@ -223419,7 +223622,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 537, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L537" } ], "type": { @@ -223446,7 +223649,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L536" } ], "type": { @@ -223473,7 +223676,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L538" } ], "type": { @@ -223498,7 +223701,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 535, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L535" } ] }, @@ -223538,7 +223741,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 607, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L607" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L607" } ], "type": { @@ -223567,7 +223770,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L604" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L604" } ], "type": { @@ -223594,7 +223797,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L605" } ], "type": { @@ -223625,7 +223828,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 608, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L608" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L608" } ], "type": { @@ -223654,7 +223857,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 609, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L609" } ], "type": { @@ -223683,7 +223886,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L606" } ], "type": { @@ -223710,7 +223913,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 603, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L603" } ], "type": { @@ -223730,7 +223933,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 602, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L602" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L602" } ] }, @@ -223770,7 +223973,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L619" } ], "type": { @@ -223799,7 +224002,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L618" } ], "type": { @@ -223824,7 +224027,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L617" } ] }, @@ -223867,7 +224070,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L184" } ], "type": { @@ -223896,7 +224099,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L189" } ], "type": { @@ -223925,7 +224128,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L199" } ], "type": { @@ -223954,7 +224157,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 194, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L194" } ], "type": { @@ -223976,7 +224179,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 179, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L179" } ] }, @@ -224016,7 +224219,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 271, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L271" } ], "type": { @@ -224043,7 +224246,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L269" } ], "type": { @@ -224063,7 +224266,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 267, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L267" } ] }, @@ -224101,7 +224304,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L257" } ], "type": { @@ -224128,7 +224331,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L253" } ], "type": { @@ -224157,7 +224360,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L251" } ], "type": { @@ -224190,7 +224393,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L261" } ], "type": { @@ -224217,7 +224420,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L259" } ], "type": { @@ -224255,7 +224458,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L249" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L249" } ], "type": { @@ -224282,7 +224485,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L255" } ], "type": { @@ -224302,7 +224505,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 247, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L247" } ] }, @@ -224334,7 +224537,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L222" } ], "type": { @@ -224374,7 +224577,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 212, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L212" } ], "type": { @@ -224403,7 +224606,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L217" } ], "type": { @@ -224443,7 +224646,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L239" } ], "type": { @@ -224501,7 +224704,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L233" } ], "type": { @@ -224521,7 +224724,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 207, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L207" } ] }, @@ -224543,7 +224746,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 276, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L276" } ], "type": { @@ -224567,7 +224770,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L275" } ], "type": { @@ -224588,7 +224791,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 278, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L278" } ], "type": { @@ -224607,7 +224810,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L277" } ], "type": { @@ -224632,7 +224835,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 274, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L274" } ] }, @@ -224656,7 +224859,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L142" } ], "type": { @@ -224677,7 +224880,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L143" } ], "type": { @@ -224697,7 +224900,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 141, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L141" } ] }, @@ -224719,7 +224922,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L203" } ], "type": { @@ -224753,7 +224956,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 204, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L204" } ], "type": { @@ -224782,7 +224985,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 202, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L202" } ] }, @@ -224806,7 +225009,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L8" } ], "type": { @@ -224826,7 +225029,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 7, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L7" } ] }, @@ -224864,7 +225067,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L636" } ], "type": { @@ -224895,7 +225098,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L637" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L637" } ], "type": { @@ -224915,7 +225118,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L635" } ], "typeParameters": [ @@ -224956,7 +225159,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L332" } ], "type": { @@ -224985,7 +225188,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L312" } ], "type": { @@ -225014,7 +225217,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L325" } ], "type": { @@ -225043,7 +225246,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L319" } ], "type": { @@ -225085,7 +225288,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L308" } ], "type": { @@ -225105,7 +225308,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 304, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L304" } ] }, @@ -225145,7 +225348,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L374" } ], "type": { @@ -225174,7 +225377,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L375" } ], "type": { @@ -225203,7 +225406,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L373" } ], "type": { @@ -225223,7 +225426,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 372, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L372" } ] }, @@ -225261,7 +225464,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L424" } ], "type": { @@ -225284,7 +225487,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 423, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L423" } ] }, @@ -225324,7 +225527,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 627, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L627" } ], "type": { @@ -225349,7 +225552,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 626, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L626" } ] }, @@ -225389,7 +225592,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L415" } ], "type": { @@ -225416,7 +225619,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L411" } ], "type": { @@ -225443,7 +225646,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 412, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L412" } ], "type": { @@ -225470,7 +225673,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L413" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L413" } ], "type": { @@ -225499,7 +225702,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L409" } ], "type": { @@ -225528,7 +225731,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L414" } ], "type": { @@ -225557,7 +225760,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L410" } ], "type": { @@ -225577,7 +225780,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 408, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L408" } ] }, @@ -225617,7 +225820,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L454" } ], "type": { @@ -225648,7 +225851,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L456" } ], "type": { @@ -225675,7 +225878,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L453" } ], "type": { @@ -225704,7 +225907,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L455" } ], "type": { @@ -225726,7 +225929,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 452, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L452" } ] }, @@ -225764,7 +225967,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L441" } ], "type": { @@ -225793,7 +225996,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 440, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L440" } ], "type": { @@ -225822,7 +226025,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L442" } ], "type": { @@ -225844,7 +226047,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 439, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L439" } ] }, @@ -225867,7 +226070,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 654, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L654" } ], "typeParameters": [ @@ -225925,7 +226128,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L8" } ], "type": { @@ -225953,7 +226156,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 339, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L339" } ], "typeParameters": [ @@ -226056,7 +226259,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 396, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L396" } ], "type": { @@ -226088,7 +226291,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 343, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L343" } ], "typeParameters": [ @@ -226123,7 +226326,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 345, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L345" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L345" } ], "type": { @@ -226145,7 +226348,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 346, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L346" } ], "type": { @@ -226165,7 +226368,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 344, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L344" } ] } @@ -226190,7 +226393,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 349, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L349" } ], "type": { @@ -226209,7 +226412,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 350, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L350" } ], "type": { @@ -226231,7 +226434,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 348, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L348" } ] } @@ -226258,7 +226461,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 5, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L5" } ], "type": { @@ -226294,7 +226497,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 391, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L391" } ], "type": { @@ -226321,7 +226524,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 590, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L590" } ], "type": { @@ -226363,7 +226566,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 431, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L431" } ], "type": { @@ -226397,7 +226600,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "signatures": [ @@ -226431,7 +226634,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "parameters": [ @@ -226480,7 +226683,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "signatures": [ @@ -226514,7 +226717,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "parameters": [ @@ -226563,7 +226766,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 15, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L15" } ], "target": 896 @@ -226579,7 +226782,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 3, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L3" } ], "target": 48 @@ -226595,7 +226798,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L7" } ], "target": 549 @@ -226611,7 +226814,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 11, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L11" } ], "target": 536 @@ -226627,7 +226830,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L8" } ], "target": 604 @@ -226643,7 +226846,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L9" } ], "target": 672 @@ -226684,7 +226887,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L1" } ] }, @@ -226713,7 +226916,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "signatures": [ @@ -226728,7 +226931,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "parameters": [ @@ -226751,7 +226954,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "signatures": [ @@ -226766,7 +226969,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "type": { @@ -226829,7 +227032,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" } ], "type": { @@ -226854,7 +227057,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "signatures": [ @@ -226869,7 +227072,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "type": { @@ -226893,7 +227096,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "signatures": [ @@ -226927,7 +227130,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "typeParameters": [ @@ -226980,7 +227183,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "signatures": [ @@ -226995,7 +227198,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "parameters": [ @@ -227113,7 +227316,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -227147,7 +227350,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "parameters": [ @@ -227187,7 +227390,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -227202,7 +227405,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "type": { @@ -227269,7 +227472,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "signatures": [ @@ -227303,7 +227506,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "typeParameters": [ @@ -227380,7 +227583,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "signatures": [ @@ -227395,7 +227598,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "parameters": [ @@ -227497,7 +227700,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "signatures": [ @@ -227512,7 +227715,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "parameters": [ @@ -227629,7 +227832,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 5, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" } ], "implementedTypes": [ @@ -227675,7 +227878,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" } ] }, @@ -227712,7 +227915,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "signatures": [ @@ -227767,7 +227970,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "parameters": [ @@ -227817,7 +228020,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "indexSignatures": [ @@ -227832,7 +228035,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "parameters": [ @@ -228119,7 +228322,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" } ], "signatures": [ @@ -228190,7 +228393,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" } ], "parameters": [ @@ -228244,7 +228447,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 95, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ], "type": { @@ -228265,7 +228468,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 96, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" } ], "type": { @@ -228285,7 +228488,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 94, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L94" } ] } @@ -228310,7 +228513,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 99, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L99" } ], "type": { @@ -228329,7 +228532,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 100, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" } ], "type": { @@ -228351,7 +228554,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" } ] } @@ -228376,7 +228579,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" } ], "signatures": [ @@ -228447,7 +228650,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" } ], "parameters": [ @@ -228501,7 +228704,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" } ], "type": { @@ -228524,7 +228727,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 226, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" } ], "type": { @@ -228544,7 +228747,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 226, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" } ] } @@ -228561,7 +228764,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 227, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227" } ], "type": { @@ -228581,7 +228784,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L225" } ] } @@ -228606,7 +228809,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ], "type": { @@ -228625,7 +228828,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 231, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" } ], "type": { @@ -228647,7 +228850,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" } ] } @@ -228672,7 +228875,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 367, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" } ], "signatures": [ @@ -228846,7 +229049,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 367, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" } ], "parameters": [ @@ -228890,7 +229093,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" } ], "signatures": [ @@ -228961,7 +229164,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" } ], "parameters": [ @@ -229011,7 +229214,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 159, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L159" } ], "type": { @@ -229040,7 +229243,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 160, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160" } ], "type": { @@ -229069,7 +229272,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" } ], "type": { @@ -229098,7 +229301,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "type": { @@ -229140,7 +229343,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 162, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" } ], "type": { @@ -229169,7 +229372,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 158, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" } ] } @@ -229206,7 +229409,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 166, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" } ], "type": { @@ -229230,7 +229433,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 167, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L167" } ], "type": { @@ -229250,7 +229453,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 165, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" } ] } @@ -229275,7 +229478,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 170, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" } ], "type": { @@ -229294,7 +229497,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 171, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L171" } ], "type": { @@ -229316,7 +229519,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 169, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" } ] } @@ -229344,7 +229547,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -229380,7 +229583,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -229454,7 +229657,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -229490,7 +229693,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -229536,7 +229739,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 21, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" } ], "extendedTypes": [ @@ -229570,7 +229773,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" } ], "type": { @@ -229640,7 +229843,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" } ] }, @@ -229669,7 +229872,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "signatures": [ @@ -229684,7 +229887,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "parameters": [ @@ -229718,7 +229921,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "indexSignatures": [ @@ -229733,7 +229936,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "parameters": [ @@ -230027,7 +230230,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "signatures": [ @@ -230121,7 +230324,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "parameters": [ @@ -230180,7 +230383,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ], "type": { @@ -230221,7 +230424,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" } ], "type": { @@ -230261,7 +230464,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "type": { @@ -230302,7 +230505,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -230324,7 +230527,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 187, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" } ] } @@ -230362,7 +230565,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 197, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" } ], "type": { @@ -230398,7 +230601,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 198, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" } ], "type": { @@ -230418,7 +230621,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 196, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" } ] } @@ -230443,7 +230646,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -230462,7 +230665,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" } ], "type": { @@ -230484,7 +230687,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ] } @@ -230509,7 +230712,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "signatures": [ @@ -230619,7 +230822,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "parameters": [ @@ -230673,7 +230876,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -230696,7 +230899,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -230716,7 +230919,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ] } @@ -230733,7 +230936,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" } ], "type": { @@ -230753,7 +230956,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 373, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" } ] } @@ -230778,7 +230981,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "type": { @@ -230797,7 +231000,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ], "type": { @@ -230819,7 +231022,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 377, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" } ] } @@ -230844,7 +231047,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "signatures": [ @@ -230954,7 +231157,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "parameters": [ @@ -231008,7 +231211,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -231031,7 +231234,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -231051,7 +231254,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ] } @@ -231068,7 +231271,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 329, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" } ], "type": { @@ -231088,7 +231291,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 327, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" } ] } @@ -231113,7 +231316,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ], "type": { @@ -231132,7 +231335,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -231154,7 +231357,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ] } @@ -231179,7 +231382,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "signatures": [ @@ -231273,7 +231476,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "parameters": [ @@ -231327,7 +231530,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "type": { @@ -231348,7 +231551,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ], "type": { @@ -231368,7 +231571,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 128, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" } ] } @@ -231393,7 +231596,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 133, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" } ], "type": { @@ -231412,7 +231615,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ], "type": { @@ -231434,7 +231637,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ] } @@ -231459,7 +231662,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "signatures": [ @@ -231555,7 +231758,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "parameters": [ @@ -231645,7 +231848,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ], "type": { @@ -231669,7 +231872,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -231689,7 +231892,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ] } @@ -231714,7 +231917,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ], "type": { @@ -231733,7 +231936,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -231755,7 +231958,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" } ] } @@ -231783,7 +231986,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -231819,7 +232022,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -231893,7 +232096,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -231929,7 +232132,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -231960,7 +232163,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "signatures": [ @@ -232062,7 +232265,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "parameters": [ @@ -232121,7 +232324,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 268, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" } ], "type": { @@ -232162,7 +232365,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "type": { @@ -232202,7 +232405,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 266, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" } ], "type": { @@ -232222,7 +232425,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 265, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" } ] } @@ -232259,7 +232462,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -232282,7 +232485,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -232302,7 +232505,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ] } @@ -232319,7 +232522,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 273, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" } ], "type": { @@ -232339,7 +232542,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ] } @@ -232364,7 +232567,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -232383,7 +232586,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -232405,7 +232608,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -232445,7 +232648,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" } ], "extendedTypes": [ @@ -232487,7 +232690,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" } ] }, @@ -232516,7 +232719,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "signatures": [ @@ -232531,7 +232734,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "parameters": [ @@ -232565,7 +232768,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "indexSignatures": [ @@ -232580,7 +232783,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "parameters": [ @@ -232870,9 +233073,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 576, + "line": 579, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L579" } ], "signatures": [ @@ -232972,9 +233175,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 576, + "line": 579, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L579" } ], "parameters": [ @@ -233084,9 +233287,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 582, + "line": 585, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" } ], "type": { @@ -233107,9 +233310,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 582, + "line": 585, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" } ], "type": { @@ -233127,9 +233330,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 582, + "line": 585, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" } ] } @@ -233144,9 +233347,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 583, + "line": 586, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L586" } ], "type": { @@ -233164,9 +233367,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 581, + "line": 584, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L584" } ] } @@ -233189,9 +233392,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 586, + "line": 589, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L586" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L589" } ], "type": { @@ -233208,9 +233411,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 587, + "line": 590, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L587" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L590" } ], "type": { @@ -233230,9 +233433,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 585, + "line": 588, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L588" } ] } @@ -233257,7 +233460,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" } ], "signatures": [ @@ -233351,7 +233554,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" } ], "parameters": [ @@ -233418,7 +233621,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 364, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" } ], "type": { @@ -233438,7 +233641,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 364, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" } ] } @@ -233475,7 +233678,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -233498,7 +233701,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -233517,7 +233720,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -233536,7 +233739,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -233556,7 +233759,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ] } @@ -233573,7 +233776,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 368, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L368" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L368" } ], "type": { @@ -233593,7 +233796,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 366, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L366" } ] } @@ -233618,7 +233821,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 371, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L371" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L371" } ], "type": { @@ -233637,7 +233840,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L372" } ], "type": { @@ -233659,7 +233862,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 370, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" } ] } @@ -233682,9 +233885,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 664, + "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L667" } ], "signatures": [ @@ -233796,9 +233999,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 664, + "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L667" } ], "parameters": [ @@ -233892,9 +234095,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 670, + "line": 673, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L670" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L673" } ], "type": { @@ -233921,9 +234124,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 668, + "line": 671, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L668" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L671" } ], "type": { @@ -233959,9 +234162,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 669, + "line": 672, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L669" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L672" } ], "type": { @@ -233981,9 +234184,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 667, + "line": 670, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L670" } ] } @@ -234018,9 +234221,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 677, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" } ], "type": { @@ -234041,9 +234244,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 677, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" } ], "type": { @@ -234061,9 +234264,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 677, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" } ] } @@ -234078,9 +234281,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 675, + "line": 678, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L675" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L678" } ], "type": { @@ -234098,9 +234301,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 673, + "line": 676, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L673" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L676" } ] } @@ -234123,9 +234326,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 678, + "line": 681, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L678" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L681" } ], "type": { @@ -234142,9 +234345,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 679, + "line": 682, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L682" } ], "type": { @@ -234164,9 +234367,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 677, + "line": 680, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L680" } ] } @@ -234189,9 +234392,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 758, + "line": 761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" } ], "signatures": [ @@ -234283,9 +234486,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 758, + "line": 761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" } ], "parameters": [ @@ -234382,9 +234585,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 761, + "line": 764, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" } ], "type": { @@ -234411,9 +234614,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 761, + "line": 764, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" } ], "type": { @@ -234440,9 +234643,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 761, + "line": 764, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" } ] } @@ -234477,9 +234680,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -234502,9 +234705,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -234530,9 +234733,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -234558,9 +234761,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -234587,9 +234790,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ] } @@ -234605,9 +234808,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 765, + "line": 768, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L768" } ], "type": { @@ -234625,9 +234828,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 763, + "line": 766, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L766" } ] } @@ -234650,9 +234853,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 768, + "line": 771, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L768" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L771" } ], "type": { @@ -234669,9 +234872,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 769, + "line": 772, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" } ], "type": { @@ -234691,9 +234894,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 767, + "line": 770, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L770" } ] } @@ -234716,9 +234919,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "signatures": [ @@ -234848,9 +235051,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "typeParameters": [ @@ -234880,9 +235083,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "type": { @@ -234901,9 +235104,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "type": { @@ -234923,9 +235126,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ] } @@ -235019,9 +235222,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 951, + "line": 954, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L951" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L954" } ], "signatures": [ @@ -235072,9 +235275,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 951, + "line": 954, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L951" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L954" } ], "parameters": [ @@ -235134,9 +235337,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 953, + "line": 956, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L953" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L956" } ], "type": { @@ -235153,9 +235356,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 954, + "line": 957, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L954" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L957" } ], "type": { @@ -235173,9 +235376,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 952, + "line": 955, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L952" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L955" } ] } @@ -235198,9 +235401,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 957, + "line": 960, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L960" } ], "type": { @@ -235217,9 +235420,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 958, + "line": 961, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L958" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L961" } ], "type": { @@ -235239,9 +235442,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 956, + "line": 959, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L956" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L959" } ] } @@ -235264,9 +235467,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1049, + "line": 1052, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1052" } ], "signatures": [ @@ -235370,9 +235573,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1049, + "line": 1052, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1052" } ], "parameters": [ @@ -235439,9 +235642,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1054, + "line": 1057, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1054" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1057" } ], "type": { @@ -235468,9 +235671,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1052, + "line": 1055, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1052" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1055" } ], "type": { @@ -235506,9 +235709,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1053, + "line": 1056, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" } ], "type": { @@ -235528,9 +235731,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1051, + "line": 1054, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1051" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1054" } ] } @@ -235555,9 +235758,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ], "type": { @@ -235578,9 +235781,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ], "type": { @@ -235598,9 +235801,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ] } @@ -235616,9 +235819,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ] } @@ -235635,9 +235838,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 915, + "line": 918, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L915" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L918" } ], "signatures": [ @@ -235704,9 +235907,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 915, + "line": 918, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L915" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L918" } ], "parameters": [ @@ -235766,9 +235969,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 917, + "line": 920, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L920" } ], "type": { @@ -235795,9 +235998,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 918, + "line": 921, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L918" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L921" } ], "type": { @@ -235815,9 +236018,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 916, + "line": 919, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L916" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L919" } ] } @@ -235840,9 +236043,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 921, + "line": 924, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L921" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L924" } ], "type": { @@ -235859,9 +236062,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 922, + "line": 925, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L922" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L925" } ], "type": { @@ -235881,9 +236084,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 920, + "line": 923, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L923" } ] } @@ -235906,9 +236109,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1276, + "line": 1279, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1279" } ], "signatures": [ @@ -236082,9 +236285,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1276, + "line": 1279, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1279" } ], "parameters": [ @@ -236184,9 +236387,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1282, + "line": 1285, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1282" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1285" } ], "type": { @@ -236208,9 +236411,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1283, + "line": 1286, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1283" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1286" } ], "type": { @@ -236228,9 +236431,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1281, + "line": 1284, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1284" } ] } @@ -236253,9 +236456,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1286, + "line": 1289, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1286" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1289" } ], "type": { @@ -236272,9 +236475,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1287, + "line": 1290, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1287" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1290" } ], "type": { @@ -236294,9 +236497,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1285, + "line": 1288, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1288" } ] } @@ -236319,9 +236522,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1348, + "line": 1351, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1351" } ], "signatures": [ @@ -236421,9 +236624,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1348, + "line": 1351, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1351" } ], "parameters": [ @@ -236502,9 +236705,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1353, + "line": 1356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1356" } ], "type": { @@ -236523,9 +236726,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1354, + "line": 1357, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1354" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1357" } ], "type": { @@ -236543,9 +236746,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1352, + "line": 1355, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1355" } ] } @@ -236568,9 +236771,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1357, + "line": 1360, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1360" } ], "type": { @@ -236587,9 +236790,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1358, + "line": 1361, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1358" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1361" } ], "type": { @@ -236609,9 +236812,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1356, + "line": 1359, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1359" } ] } @@ -236634,9 +236837,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 514, + "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L517" } ], "signatures": [ @@ -236736,9 +236939,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 514, + "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L517" } ], "parameters": [ @@ -236848,9 +237051,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 520, + "line": 523, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" } ], "type": { @@ -236871,9 +237074,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 520, + "line": 523, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" } ], "type": { @@ -236891,9 +237094,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 520, + "line": 523, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" } ] } @@ -236908,9 +237111,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 521, + "line": 524, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L524" } ], "type": { @@ -236928,9 +237131,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 519, + "line": 522, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L522" } ] } @@ -236953,9 +237156,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 524, + "line": 527, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L527" } ], "type": { @@ -236972,9 +237175,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 525, + "line": 528, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" } ], "type": { @@ -236994,9 +237197,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 523, + "line": 526, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L526" } ] } @@ -237019,9 +237222,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1112, + "line": 1115, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1115" } ], "signatures": [ @@ -237129,9 +237332,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1112, + "line": 1115, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1115" } ], "parameters": [ @@ -237194,9 +237397,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1114, + "line": 1117, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1117" } ], "type": { @@ -237218,9 +237421,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1115, + "line": 1118, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1118" } ], "type": { @@ -237238,9 +237441,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1113, + "line": 1116, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1116" } ] } @@ -237263,9 +237466,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1118, + "line": 1121, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1121" } ], "type": { @@ -237282,9 +237485,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1119, + "line": 1122, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1122" } ], "type": { @@ -237304,9 +237507,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1117, + "line": 1120, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1120" } ] } @@ -237334,7 +237537,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -237370,7 +237573,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -237444,7 +237647,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -237480,7 +237683,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -237509,9 +237712,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1377, + "line": 1380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1380" } ], "signatures": [ @@ -237524,9 +237727,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1377, + "line": 1380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1380" } ], "parameters": [ @@ -237558,9 +237761,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 454, + "line": 457, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" } ], "signatures": [ @@ -237602,7 +237805,7 @@ "content": [ { "kind": "code", - "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', avatarFile, {\n cacheControl: '3600',\n upsert: true\n })\n```" + "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', avatarFile, {\n cacheControl: '3600'\n })\n```" }, { "kind": "text", @@ -237661,7 +237864,23 @@ }, { "kind": "text", - "text": "\n- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works\n- For React Native, using either " + "text": "\n- " + }, + { + "kind": "code", + "text": "`update()`" + }, + { + "kind": "text", + "text": " always replaces the file at the given path regardless of the " + }, + { + "kind": "code", + "text": "`upsert`" + }, + { + "kind": "text", + "text": " option.\n- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works\n- For React Native, using either " }, { "kind": "code", @@ -237702,9 +237921,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 454, + "line": 457, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" } ], "parameters": [ @@ -237898,7 +238117,39 @@ "summary": [ { "kind": "text", - "text": "Optional file upload options including cacheControl, contentType, upsert, and metadata." + "text": "Optional file upload options including cacheControl, contentType, and metadata.\n**Note:** The " + }, + { + "kind": "code", + "text": "`upsert`" + }, + { + "kind": "text", + "text": " option has no effect here. " + }, + { + "kind": "code", + "text": "`update()`" + }, + { + "kind": "text", + "text": " always replaces the\nfile at the given path, so the " + }, + { + "kind": "code", + "text": "`x-upsert`" + }, + { + "kind": "text", + "text": " header is not sent. To control upsert\nbehavior, use " + }, + { + "kind": "code", + "text": "`upload()`" + }, + { + "kind": "text", + "text": " instead." } ] }, @@ -237938,9 +238189,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -237961,9 +238212,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -237980,9 +238231,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -237999,9 +238250,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -238019,9 +238270,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ] } @@ -238036,9 +238287,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 471, + "line": 474, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L474" } ], "type": { @@ -238056,9 +238307,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 469, + "line": 472, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L472" } ] } @@ -238081,9 +238332,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 474, + "line": 477, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" } ], "type": { @@ -238100,9 +238351,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 475, + "line": 478, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L478" } ], "type": { @@ -238122,9 +238373,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 473, + "line": 476, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" } ] } @@ -238149,7 +238400,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 203, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" } ], "signatures": [ @@ -238309,7 +238560,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 203, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" } ], "parameters": [ @@ -238418,7 +238669,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -238441,7 +238692,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -238460,7 +238711,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -238479,7 +238730,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -238499,7 +238750,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ] } @@ -238516,7 +238767,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 210, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" } ], "type": { @@ -238536,7 +238787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 208, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L208" } ] } @@ -238561,7 +238812,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 213, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L213" } ], "type": { @@ -238580,7 +238831,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L214" } ], "type": { @@ -238602,7 +238853,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 212, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L212" } ] } @@ -238627,7 +238878,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 257, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" } ], "signatures": [ @@ -238721,7 +238972,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 257, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" } ], "parameters": [ @@ -238877,7 +239128,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -238896,7 +239147,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -238918,7 +239169,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -238943,7 +239194,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -238966,7 +239217,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 322, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" } ], "type": { @@ -238986,7 +239237,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 322, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" } ], "type": { @@ -239007,7 +239258,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 322, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" } ] } @@ -239024,7 +239275,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -239044,7 +239295,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -239089,7 +239340,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "extendedTypes": [ @@ -239124,7 +239375,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" } ] }, @@ -239166,7 +239417,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" } ], "signatures": [ @@ -239221,7 +239472,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" } ], "parameters": [ @@ -239319,7 +239570,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 155, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" } ], "signatures": [ @@ -239373,7 +239624,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 155, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" } ], "parameters": [ @@ -239444,7 +239695,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" } ], "signatures": [ @@ -239498,7 +239749,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" } ], "parameters": [ @@ -239569,7 +239820,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" } ], "signatures": [ @@ -239623,7 +239874,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" } ], "parameters": [ @@ -239667,7 +239918,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ], "signatures": [ @@ -239721,7 +239972,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ], "parameters": [ @@ -239776,7 +240027,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ], "type": { @@ -239798,7 +240049,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ] } @@ -239835,7 +240086,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" } ], "signatures": [ @@ -239889,7 +240140,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" } ], "parameters": [ @@ -239968,7 +240219,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -240005,7 +240256,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -240079,7 +240330,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -240116,7 +240367,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -240162,7 +240413,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" } ], "extendedTypes": [ @@ -240201,7 +240452,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 266, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" } ], "signatures": [ @@ -240246,7 +240497,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 266, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" } ], "parameters": [ @@ -240280,7 +240531,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 268, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" } ], "indexSignatures": [ @@ -240295,7 +240546,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 268, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" } ], "parameters": [ @@ -240583,7 +240834,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 303, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" } ], "signatures": [ @@ -240637,7 +240888,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 303, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" } ], "parameters": [ @@ -240725,7 +240976,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 379, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" } ], "signatures": [ @@ -240779,7 +241030,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 379, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" } ], "parameters": [ @@ -240850,7 +241101,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 356, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" } ], "signatures": [ @@ -240904,7 +241155,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 356, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" } ], "parameters": [ @@ -240959,7 +241210,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ], "type": { @@ -240981,7 +241232,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ] } @@ -241018,7 +241269,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" } ], "signatures": [ @@ -241072,7 +241323,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" } ], "parameters": [ @@ -241116,7 +241367,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 329, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" } ], "signatures": [ @@ -241170,7 +241421,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 329, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" } ], "parameters": [ @@ -241264,7 +241515,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -241301,7 +241552,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -241375,7 +241626,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -241412,7 +241663,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -241458,7 +241709,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 250, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L250" } ], "extendedTypes": [ @@ -241497,7 +241748,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" } ], "signatures": [ @@ -241542,7 +241793,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" } ], "parameters": [ @@ -241576,7 +241827,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 454, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" } ], "indexSignatures": [ @@ -241591,7 +241842,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 454, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" } ], "parameters": [ @@ -241890,7 +242141,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" } ], "signatures": [ @@ -241944,7 +242195,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" } ], "parameters": [ @@ -242041,7 +242292,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 521, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" } ], "signatures": [ @@ -242095,7 +242346,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 521, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" } ], "parameters": [ @@ -242194,7 +242445,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 551, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" } ], "signatures": [ @@ -242248,7 +242499,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 551, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" } ], "parameters": [ @@ -242348,7 +242599,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 491, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" } ], "signatures": [ @@ -242402,7 +242653,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 491, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" } ], "parameters": [ @@ -242499,7 +242750,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 586, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" } ], "signatures": [ @@ -242553,7 +242804,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 586, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" } ], "parameters": [ @@ -242655,7 +242906,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -242692,7 +242943,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -242766,7 +243017,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -242803,7 +243054,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -242849,7 +243100,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 434, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L434" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L434" } ], "extendedTypes": [ @@ -242899,7 +243150,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" } ], "type": { @@ -243137,7 +243388,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "type": { @@ -243153,7 +243404,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "indexSignatures": [ @@ -243168,7 +243419,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "parameters": [ @@ -243205,7 +243456,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 26, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" } ] } @@ -243225,7 +243476,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" } ] }, @@ -243254,7 +243505,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "signatures": [ @@ -243269,7 +243520,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "parameters": [ @@ -243292,7 +243543,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "signatures": [ @@ -243307,7 +243558,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "type": { @@ -243368,7 +243619,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "signatures": [ @@ -243402,7 +243653,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "typeParameters": [ @@ -243485,7 +243736,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "signatures": [ @@ -243500,7 +243751,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "parameters": [ @@ -243608,7 +243859,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "signatures": [ @@ -243623,7 +243874,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "parameters": [ @@ -243736,7 +243987,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 4, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" } ], "implementedTypes": [ @@ -243782,7 +244033,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" } ] }, @@ -243797,7 +244048,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" } ] }, @@ -243812,7 +244063,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorDataApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" } ] }, @@ -243854,7 +244105,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" } ], "type": { @@ -243877,7 +244128,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" } ], "type": { @@ -243900,7 +244151,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" } ], "type": { @@ -243925,7 +244176,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" } ], "type": { @@ -243950,7 +244201,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" } ], "type": { @@ -243975,7 +244226,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" } ], "type": { @@ -243995,7 +244246,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" } ] } @@ -244011,7 +244262,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" } ] } @@ -248941,7 +249192,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L96" } ], "type": { @@ -248960,7 +249211,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 97, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L97" } ], "type": { @@ -248979,7 +249230,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L98" } ], "type": { @@ -248998,7 +249249,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L99" } ], "type": { @@ -249017,7 +249268,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L100" } ], "type": { @@ -249036,7 +249287,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L101" } ], "type": { @@ -249055,7 +249306,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L102" } ], "type": { @@ -249074,7 +249325,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L103" } ], "type": { @@ -249093,7 +249344,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L104" } ], "type": { @@ -249112,7 +249363,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L105" } ], "type": { @@ -249131,7 +249382,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 106, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L106" } ], "type": { @@ -249150,7 +249401,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L107" } ], "type": { @@ -249169,7 +249420,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L108" } ], "type": { @@ -249188,7 +249439,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L109" } ], "type": { @@ -249207,7 +249458,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L110" } ], "type": { @@ -249227,7 +249478,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 95, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L95" } ] }, @@ -249257,7 +249508,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L44" } ], "signatures": [ @@ -249311,7 +249562,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L44" } ], "parameters": [ @@ -249354,7 +249605,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 52, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L52" } ], "type": { @@ -249583,7 +249834,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 51, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L51" } ], "type": { @@ -249620,7 +249871,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 53, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L53" } ], "type": { @@ -249643,7 +249894,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 50, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L50" } ] } @@ -249673,7 +249924,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 19, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L19" } ], "type": { @@ -249902,7 +250153,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L17" } ], "type": { @@ -249938,7 +250189,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 18, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L18" } ], "type": { @@ -249961,7 +250212,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L16" } ], "type": { @@ -249980,7 +250231,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "signatures": [ @@ -250423,7 +250674,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "typeParameters": [ @@ -250522,7 +250773,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "signatures": [ @@ -250566,7 +250817,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "parameters": [ @@ -250627,7 +250878,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 15, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L15" } ] }, @@ -250668,7 +250919,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L32" } ], "signatures": [ @@ -250683,7 +250934,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L32" } ], "parameters": [ @@ -250754,7 +251005,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -250773,7 +251024,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -250788,7 +251039,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -250811,7 +251062,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -250830,7 +251081,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -250849,7 +251100,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -250869,7 +251120,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -250897,7 +251148,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L30" } ], "extendedTypes": [ @@ -250966,7 +251217,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L58" } ], "signatures": [ @@ -250981,7 +251232,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L58" } ], "parameters": [ @@ -251029,7 +251280,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -251055,7 +251306,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -251072,7 +251323,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251095,7 +251346,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251114,7 +251365,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251133,7 +251384,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251153,7 +251404,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -251191,7 +251442,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L57" } ], "extendedTypes": [ @@ -251240,7 +251491,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L90" } ], "signatures": [ @@ -251255,7 +251506,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L90" } ], "parameters": [ @@ -251303,7 +251554,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -251329,7 +251580,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -251346,7 +251597,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251369,7 +251620,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251388,7 +251639,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251407,7 +251658,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251427,7 +251678,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -251465,7 +251716,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L89" } ], "extendedTypes": [ @@ -251514,7 +251765,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L74" } ], "signatures": [ @@ -251529,7 +251780,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L74" } ], "parameters": [ @@ -251577,7 +251828,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -251603,7 +251854,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -251620,7 +251871,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251643,7 +251894,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251662,7 +251913,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251681,7 +251932,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -251701,7 +251952,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -251739,7 +251990,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 73, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L73" } ], "extendedTypes": [ @@ -251762,7 +252013,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L113" } ], "type": { @@ -251795,7 +252046,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L129" } ], "type": { @@ -251904,7 +252155,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L117" } ], "type": { @@ -251920,7 +252171,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L117" } ], "indexSignatures": [ @@ -251935,7 +252186,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L117" } ], "parameters": [ @@ -251981,7 +252232,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L121" } ], "type": { @@ -252031,7 +252282,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L125" } ], "type": { @@ -252062,7 +252313,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L140" } ], "type": { @@ -252096,7 +252347,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L145" } ], "type": { @@ -252116,7 +252367,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L113" } ] } @@ -252133,7 +252384,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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 dc53f97219f5a..7e06c54ca09ae 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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "signatures": [ @@ -1505,7 +1505,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "typeParameters": [ @@ -1604,7 +1604,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "signatures": [ @@ -1648,7 +1648,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "parameters": [ @@ -1709,7 +1709,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 15, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L15" } ] }, @@ -1750,7 +1750,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L32" } ], "signatures": [ @@ -1765,7 +1765,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L32" } ], "parameters": [ @@ -1836,7 +1836,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -1855,7 +1855,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -1870,7 +1870,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1893,7 +1893,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1912,7 +1912,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1931,7 +1931,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1951,7 +1951,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -1979,7 +1979,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L30" } ], "extendedTypes": [ @@ -2048,7 +2048,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L58" } ], "signatures": [ @@ -2063,7 +2063,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L58" } ], "parameters": [ @@ -2111,7 +2111,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2137,7 +2137,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2154,7 +2154,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2177,7 +2177,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2196,7 +2196,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2215,7 +2215,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2235,7 +2235,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2273,7 +2273,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L57" } ], "extendedTypes": [ @@ -2322,7 +2322,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L90" } ], "signatures": [ @@ -2337,7 +2337,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L90" } ], "parameters": [ @@ -2385,7 +2385,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2411,7 +2411,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2428,7 +2428,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2451,7 +2451,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2470,7 +2470,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2489,7 +2489,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2509,7 +2509,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2547,7 +2547,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L89" } ], "extendedTypes": [ @@ -2596,7 +2596,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L74" } ], "signatures": [ @@ -2611,7 +2611,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L74" } ], "parameters": [ @@ -2659,7 +2659,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2685,7 +2685,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2702,7 +2702,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2725,7 +2725,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2744,7 +2744,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2763,7 +2763,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2783,7 +2783,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2821,7 +2821,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 73, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L73" } ], "extendedTypes": [ @@ -2844,7 +2844,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L113" } ], "type": { @@ -2877,7 +2877,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L129" } ], "type": { @@ -2986,7 +2986,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L117" } ], "type": { @@ -3002,7 +3002,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L117" } ], "indexSignatures": [ @@ -3017,7 +3017,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L117" } ], "parameters": [ @@ -3063,7 +3063,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L121" } ], "type": { @@ -3113,7 +3113,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L125" } ], "type": { @@ -3144,7 +3144,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L140" } ], "type": { @@ -3178,7 +3178,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L145" } ], "type": { @@ -3198,7 +3198,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L113" } ] } @@ -3215,7 +3215,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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 dc53f97219f5a..7e06c54ca09ae 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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "signatures": [ @@ -1505,7 +1505,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "typeParameters": [ @@ -1604,7 +1604,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "signatures": [ @@ -1648,7 +1648,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "parameters": [ @@ -1709,7 +1709,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 15, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/FunctionsClient.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/FunctionsClient.ts#L15" } ] }, @@ -1750,7 +1750,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L32" } ], "signatures": [ @@ -1765,7 +1765,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L32" } ], "parameters": [ @@ -1836,7 +1836,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -1855,7 +1855,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -1870,7 +1870,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1893,7 +1893,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1912,7 +1912,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1931,7 +1931,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1951,7 +1951,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -1979,7 +1979,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L30" } ], "extendedTypes": [ @@ -2048,7 +2048,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L58" } ], "signatures": [ @@ -2063,7 +2063,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L58" } ], "parameters": [ @@ -2111,7 +2111,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2137,7 +2137,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2154,7 +2154,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2177,7 +2177,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2196,7 +2196,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2215,7 +2215,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2235,7 +2235,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2273,7 +2273,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L57" } ], "extendedTypes": [ @@ -2322,7 +2322,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L90" } ], "signatures": [ @@ -2337,7 +2337,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L90" } ], "parameters": [ @@ -2385,7 +2385,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2411,7 +2411,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2428,7 +2428,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2451,7 +2451,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2470,7 +2470,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2489,7 +2489,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2509,7 +2509,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2547,7 +2547,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L89" } ], "extendedTypes": [ @@ -2596,7 +2596,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L74" } ], "signatures": [ @@ -2611,7 +2611,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L74" } ], "parameters": [ @@ -2659,7 +2659,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2685,7 +2685,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2702,7 +2702,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2725,7 +2725,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2744,7 +2744,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2763,7 +2763,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2783,7 +2783,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2821,7 +2821,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 73, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L73" } ], "extendedTypes": [ @@ -2844,7 +2844,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L113" } ], "type": { @@ -2877,7 +2877,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L129" } ], "type": { @@ -2986,7 +2986,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L117" } ], "type": { @@ -3002,7 +3002,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L117" } ], "indexSignatures": [ @@ -3017,7 +3017,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L117" } ], "parameters": [ @@ -3063,7 +3063,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L121" } ], "type": { @@ -3113,7 +3113,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L125" } ], "type": { @@ -3144,7 +3144,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L140" } ], "type": { @@ -3178,7 +3178,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L145" } ], "type": { @@ -3198,7 +3198,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/functions-js/src/types.ts#L113" } ] } @@ -3215,7 +3215,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/functions-js/src/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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 c25cd9dba7a85..0166bd7041346 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json @@ -42,7 +42,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L67" } ], "signatures": [ @@ -57,7 +57,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L67" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L65" } ], "type": { @@ -244,7 +244,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -261,7 +261,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -403,7 +403,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -441,7 +441,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 64, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L64" } ], "extendedTypes": [ @@ -490,7 +490,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L28" } ], "signatures": [ @@ -505,7 +505,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L28" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -682,7 +682,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -697,7 +697,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -936,7 +936,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "signatures": [ @@ -951,7 +951,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -1303,7 +1303,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L196" } ], "signatures": [ @@ -1318,7 +1318,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L196" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L200" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L198" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L197" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L199" } ], "type": { @@ -1548,7 +1548,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L196" } ] } @@ -1586,7 +1586,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 189, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L189" } ], "extendedTypes": [ @@ -1635,7 +1635,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L171" } ], "signatures": [ @@ -1650,7 +1650,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L171" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -1834,7 +1834,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -1851,7 +1851,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -1993,7 +1993,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -2031,7 +2031,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 170, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L170" } ], "extendedTypes": [ @@ -2080,7 +2080,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L356" } ], "signatures": [ @@ -2095,7 +2095,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L356" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -2279,7 +2279,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -2296,7 +2296,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -2438,7 +2438,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -2476,7 +2476,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 355, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L355" } ], "extendedTypes": [ @@ -2525,7 +2525,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L155" } ], "signatures": [ @@ -2540,7 +2540,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L155" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -2711,7 +2711,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -2728,7 +2728,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -2870,7 +2870,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -2908,7 +2908,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 154, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L154" } ], "extendedTypes": [ @@ -2957,7 +2957,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L261" } ], "signatures": [ @@ -2972,7 +2972,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L261" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -3143,7 +3143,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -3160,7 +3160,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -3302,7 +3302,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -3340,7 +3340,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 260, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L260" } ], "extendedTypes": [ @@ -3389,7 +3389,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "signatures": [ @@ -3404,7 +3404,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -3756,7 +3756,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L234" } ], "signatures": [ @@ -3771,7 +3771,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L234" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L238" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L236" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L235" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L237" } ], "type": { @@ -4001,7 +4001,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L234" } ] } @@ -4039,7 +4039,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 226, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L226" } ], "extendedTypes": [ @@ -4088,7 +4088,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L291" } ], "signatures": [ @@ -4103,7 +4103,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L291" } ], "parameters": [ @@ -4179,7 +4179,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -4238,7 +4238,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -4272,7 +4272,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -4298,7 +4298,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -4315,7 +4315,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -4338,7 +4338,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -4390,7 +4390,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -4409,7 +4409,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -4428,7 +4428,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -4457,7 +4457,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -4495,7 +4495,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 290, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L290" } ], "extendedTypes": [ @@ -4544,7 +4544,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L135" } ], "signatures": [ @@ -4559,7 +4559,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L135" } ], "type": { @@ -4611,7 +4611,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -4670,7 +4670,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -4704,7 +4704,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -4730,7 +4730,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -4747,7 +4747,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -4770,7 +4770,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -4822,7 +4822,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -4841,7 +4841,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -4860,7 +4860,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -4889,7 +4889,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -4927,7 +4927,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 134, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L134" } ], "extendedTypes": [ @@ -4976,7 +4976,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L96" } ], "signatures": [ @@ -4991,7 +4991,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L96" } ], "parameters": [ @@ -5067,7 +5067,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -5124,7 +5124,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L94" } ], "type": { @@ -5153,7 +5153,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -5188,7 +5188,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -5205,7 +5205,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -5228,7 +5228,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -5280,7 +5280,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -5299,7 +5299,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -5318,7 +5318,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -5347,7 +5347,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -5385,7 +5385,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 93, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L93" } ], "extendedTypes": [ @@ -5434,7 +5434,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L321" } ], "signatures": [ @@ -5449,7 +5449,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L321" } ], "parameters": [ @@ -5552,7 +5552,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -5611,7 +5611,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -5643,7 +5643,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L319" } ], "type": { @@ -5688,7 +5688,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -5712,7 +5712,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 327, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L327" } ], "signatures": [ @@ -5727,7 +5727,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 327, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L327" } ], "type": { @@ -5750,7 +5750,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 331, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L331" } ], "type": { @@ -5802,7 +5802,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 329, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L329" } ], "type": { @@ -5821,7 +5821,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 328, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L328" } ], "type": { @@ -5840,7 +5840,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 332, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L332" } ], "type": { @@ -5875,7 +5875,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 330, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L330" } ], "type": { @@ -5904,7 +5904,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 327, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L327" } ] } @@ -5942,7 +5942,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 315, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L315" } ], "extendedTypes": [ @@ -5991,7 +5991,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L117" } ], "signatures": [ @@ -6006,7 +6006,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L117" } ], "parameters": [ @@ -6113,7 +6113,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -6170,7 +6170,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -6202,7 +6202,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -6228,7 +6228,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -6245,7 +6245,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -6268,7 +6268,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -6320,7 +6320,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -6339,7 +6339,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -6358,7 +6358,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -6387,7 +6387,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -6425,7 +6425,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 113, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L113" } ], "extendedTypes": [ @@ -6502,7 +6502,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "signatures": [ @@ -6547,7 +6547,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "parameters": [ @@ -6579,7 +6579,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 103, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L103" } ], "type": { @@ -6602,7 +6602,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 102, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L102" } ], "type": { @@ -6831,7 +6831,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "type": { @@ -6847,7 +6847,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 99, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "indexSignatures": [ @@ -6862,7 +6862,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" } ], "parameters": [ @@ -6899,7 +6899,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L98" } ], "type": { @@ -6920,7 +6920,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 97, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ] } @@ -6956,7 +6956,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" } ], "type": { @@ -6985,7 +6985,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -7014,7 +7014,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" } ], "type": { @@ -7051,7 +7051,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" } ], "type": { @@ -7072,7 +7072,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 481, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" } ], "signatures": [ @@ -7222,7 +7222,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 481, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" } ], "parameters": [ @@ -7271,7 +7271,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 831, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" } ], "signatures": [ @@ -7361,7 +7361,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 831, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" } ], "parameters": [ @@ -7444,7 +7444,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" } ], "signatures": [ @@ -7662,7 +7662,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" } ], "parameters": [ @@ -7711,7 +7711,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 622, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" } ], "signatures": [ @@ -7793,7 +7793,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 622, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" } ], "parameters": [ @@ -7856,7 +7856,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" } ], "signatures": [ @@ -7938,7 +7938,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" } ], "parameters": [ @@ -8013,7 +8013,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 234, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L234" } ], "type": { @@ -8042,7 +8042,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L237" } ], "type": { @@ -8062,7 +8062,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 232, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" } ] } @@ -8101,7 +8101,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 521, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" } ], "signatures": [ @@ -8172,7 +8172,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 521, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" } ], "parameters": [ @@ -8246,7 +8246,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -8272,7 +8272,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -8291,7 +8291,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -8316,7 +8316,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ] } @@ -8341,7 +8341,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -8361,7 +8361,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ] } @@ -8386,7 +8386,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ], "type": { @@ -8409,7 +8409,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ], "type": { @@ -8428,7 +8428,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ] } @@ -8445,7 +8445,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ], "type": { @@ -8467,7 +8467,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ] } @@ -8492,7 +8492,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" } ], "signatures": [ @@ -8526,7 +8526,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" } ], "parameters": [ @@ -8610,7 +8610,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 144, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" } ], "type": { @@ -8629,7 +8629,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 144, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" } ], "type": { @@ -8660,7 +8660,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 144, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" } ] } @@ -8683,7 +8683,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 782, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" } ], "signatures": [ @@ -8883,7 +8883,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 782, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" } ], "parameters": [ @@ -8986,7 +8986,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 44, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" } ] }, @@ -9008,7 +9008,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L341" } ], "signatures": [ @@ -9053,7 +9053,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L341" } ], "parameters": [ @@ -9100,7 +9100,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 226, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L226" } ], "type": { @@ -9130,7 +9130,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L230" } ], "type": { @@ -9159,7 +9159,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 236, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L236" } ], "type": { @@ -9196,7 +9196,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 243, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L243" } ], "type": { @@ -9217,7 +9217,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1405" } ], "signatures": [ @@ -9299,7 +9299,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1405" } ], "parameters": [ @@ -9344,9 +9344,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5857, + "line": 5868, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5857" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5868" } ], "signatures": [ @@ -9452,9 +9452,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5857, + "line": 5868, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5857" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5868" } ], "parameters": [ @@ -9546,9 +9546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5866, + "line": 5877, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5866" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5877" } ], "type": { @@ -9575,9 +9575,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5869, + "line": 5880, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5869" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5880" } ], "type": { @@ -9598,9 +9598,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5869, + "line": 5880, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5869" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5880" } ], "type": { @@ -9623,9 +9623,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5869, + "line": 5880, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5869" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5880" } ] } @@ -9656,9 +9656,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5863, + "line": 5874, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5863" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5874" } ], "type": { @@ -9681,9 +9681,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5859, + "line": 5870, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5859" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5870" } ] } @@ -9719,9 +9719,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -9742,9 +9742,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -9763,9 +9763,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -9784,9 +9784,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -9809,9 +9809,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ] } @@ -9826,9 +9826,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5874, + "line": 5885, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5874" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5885" } ], "type": { @@ -9846,9 +9846,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5872, + "line": 5883, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5872" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5883" } ] } @@ -9871,9 +9871,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5876, + "line": 5887, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5887" } ], "type": { @@ -9890,9 +9890,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5876, + "line": 5887, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5887" } ], "type": { @@ -9912,9 +9912,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5876, + "line": 5887, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5887" } ] } @@ -9937,9 +9937,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 5888, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5888" } ], "type": { @@ -9956,9 +9956,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 5888, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5888" } ], "type": { @@ -9976,9 +9976,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 5888, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5888" } ] } @@ -10003,7 +10003,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2661, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2661" } ], "signatures": [ @@ -10126,7 +10126,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2661, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2661" } ], "type": { @@ -10159,7 +10159,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2754, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2754" } ], "type": { @@ -10182,7 +10182,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2755, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2755" } ], "type": { @@ -10204,7 +10204,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2754, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2754" } ] } @@ -10221,7 +10221,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2757, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2757" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2757" } ], "type": { @@ -10241,7 +10241,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2753, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2753" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2753" } ] } @@ -10266,7 +10266,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2760, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2760" } ], "type": { @@ -10289,7 +10289,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2761, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2761" } ], "type": { @@ -10309,7 +10309,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2760, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2760" } ] } @@ -10326,7 +10326,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2763, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2763" } ], "type": { @@ -10348,7 +10348,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2759, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2759" } ] } @@ -10373,7 +10373,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2766, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2766" } ], "type": { @@ -10396,7 +10396,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2767, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2767" } ], "type": { @@ -10416,7 +10416,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2766, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2766" } ] } @@ -10433,7 +10433,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2769, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2769" } ], "type": { @@ -10453,7 +10453,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2765, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2765" } ] } @@ -10478,7 +10478,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2972, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2972" } ], "signatures": [ @@ -10570,7 +10570,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2972, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2972" } ], "parameters": [ @@ -10625,9 +10625,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4230, + "line": 4241, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4241" } ], "signatures": [ @@ -10699,9 +10699,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4230, + "line": 4241, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4241" } ], "type": { @@ -10732,9 +10732,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4232, + "line": 4243, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4243" } ], "type": { @@ -10755,9 +10755,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4233, + "line": 4244, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4244" } ], "type": { @@ -10780,9 +10780,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4232, + "line": 4243, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4243" } ] } @@ -10797,9 +10797,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4235, + "line": 4246, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4246" } ], "type": { @@ -10817,9 +10817,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4231, + "line": 4242, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4242" } ] } @@ -10842,9 +10842,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4237, + "line": 4248, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4248" } ], "type": { @@ -10861,9 +10861,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4237, + "line": 4248, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4248" } ], "type": { @@ -10883,9 +10883,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4237, + "line": 4248, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4248" } ] } @@ -10910,7 +10910,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 515, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L515" } ], "signatures": [ @@ -10944,7 +10944,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 515, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L515" } ], "type": { @@ -10980,7 +10980,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 477, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L477" } ], "signatures": [ @@ -11003,7 +11003,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 477, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L477" } ], "type": { @@ -11092,21 +11092,21 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4255, + "line": 4266, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4266" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4260, + "line": 4271, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4260" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4271" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4289, + "line": 4300, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4289" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4300" } ], "signatures": [ @@ -11127,9 +11127,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4255, + "line": 4266, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4266" } ], "parameters": [ @@ -11182,9 +11182,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4260, + "line": 4271, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4260" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4271" } ], "parameters": [ @@ -11521,21 +11521,21 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4026, + "line": 4037, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4026" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4037" } ], "signatures": [ @@ -11556,9 +11556,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ], "parameters": [ @@ -11587,9 +11587,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ], "signatures": [ @@ -11602,9 +11602,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ], "parameters": [ @@ -11672,9 +11672,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3820, + "line": 3831, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3831" } ], "type": { @@ -11695,9 +11695,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3820, + "line": 3831, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3831" } ], "type": { @@ -11717,9 +11717,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3820, + "line": 3831, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3831" } ] } @@ -11735,9 +11735,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 90, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ] } @@ -11779,9 +11779,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ], "parameters": [ @@ -11810,9 +11810,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ], "signatures": [ @@ -11825,9 +11825,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ], "parameters": [ @@ -11906,9 +11906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3836, + "line": 3847, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3847" } ], "type": { @@ -11929,9 +11929,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3836, + "line": 3847, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3847" } ], "type": { @@ -11951,9 +11951,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3836, + "line": 3847, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3847" } ] } @@ -11969,9 +11969,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ] } @@ -11990,7 +11990,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2444, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2444" } ], "signatures": [ @@ -12076,7 +12076,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2444, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2444" } ], "type": { @@ -12110,7 +12110,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ], "signatures": [ @@ -12186,7 +12186,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ], "parameters": [ @@ -12226,7 +12226,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ], "type": { @@ -12246,7 +12246,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ] } @@ -12282,9 +12282,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6028, + "line": 6039, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L6028" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L6039" } ], "signatures": [ @@ -12313,9 +12313,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6028, + "line": 6039, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L6028" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L6039" } ], "parameters": [ @@ -12366,7 +12366,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2535, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2535" } ], "signatures": [ @@ -12517,7 +12517,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2535, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2535" } ], "parameters": [ @@ -12564,9 +12564,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4146, + "line": 4157, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4157" } ], "signatures": [ @@ -12692,9 +12692,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4146, + "line": 4157, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4157" } ], "parameters": [ @@ -12751,9 +12751,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4150, + "line": 4161, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4161" } ], "type": { @@ -12780,9 +12780,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4149, + "line": 4160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4149" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4160" } ], "type": { @@ -12800,9 +12800,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4148, + "line": 4159, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4159" } ] } @@ -12838,9 +12838,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4154, + "line": 4165, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4154" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4165" } ], "type": { @@ -12863,9 +12863,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4155, + "line": 4166, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4166" } ], "type": { @@ -12883,9 +12883,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4153, + "line": 4164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4164" } ] } @@ -12908,9 +12908,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4168, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4168" } ], "type": { @@ -12927,9 +12927,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4168, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4168" } ], "type": { @@ -12949,9 +12949,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4168" } ] } @@ -12976,7 +12976,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3339, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3339" } ], "signatures": [ @@ -13075,7 +13075,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3339, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3339" } ], "parameters": [ @@ -13113,7 +13113,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3340, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3340" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3340" } ], "type": { @@ -13132,7 +13132,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3341, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3341" } ], "type": { @@ -13152,7 +13152,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3339, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3339" } ] } @@ -13190,7 +13190,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L689" } ], "signatures": [ @@ -13283,7 +13283,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L689" } ], "parameters": [ @@ -13334,7 +13334,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1977, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1977" } ], "signatures": [ @@ -13400,7 +13400,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1977, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1977" } ], "parameters": [ @@ -13449,7 +13449,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1226" } ], "signatures": [ @@ -13617,7 +13617,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1226" } ], "parameters": [ @@ -13666,7 +13666,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2090, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2090" } ], "signatures": [ @@ -13851,7 +13851,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2090, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2090" } ], "parameters": [ @@ -13898,9 +13898,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5972, + "line": 5983, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5983" } ], "signatures": [ @@ -13929,9 +13929,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5972, + "line": 5983, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5983" } ], "parameters": [ @@ -13982,7 +13982,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1087, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1087" } ], "signatures": [ @@ -14058,7 +14058,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1087, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1087" } ], "parameters": [ @@ -14107,7 +14107,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2381" } ], "signatures": [ @@ -14186,7 +14186,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2381" } ], "parameters": [ @@ -14235,7 +14235,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1501, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1501" } ], "signatures": [ @@ -14327,7 +14327,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1501, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1501" } ], "parameters": [ @@ -14375,7 +14375,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ], "type": { @@ -14398,7 +14398,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ], "type": { @@ -14419,7 +14419,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ], "type": { @@ -14441,7 +14441,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ] } @@ -14458,7 +14458,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1504, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1504" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1504" } ], "type": { @@ -14478,7 +14478,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1502, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1502" } ] } @@ -14503,7 +14503,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -14526,7 +14526,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -14545,7 +14545,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -14565,7 +14565,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ] } @@ -14582,7 +14582,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -14604,7 +14604,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ] } @@ -14627,9 +14627,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ], "signatures": [ @@ -14683,7 +14683,31 @@ }, { "kind": "text", - "text": " event is fired!" + "text": " event is fired!\n\n**Warning:** the default " + }, + { + "kind": "code", + "text": "`scope`" + }, + { + "kind": "text", + "text": " is " + }, + { + "kind": "code", + "text": "`'global'`" + }, + { + "kind": "text", + "text": ". This signs the user out of\n**every device they are currently signed in on**, not just the current\ntab/session. If you only want to sign the user out of the current session\n(the behavior most other auth libraries default to), pass\n" + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " explicitly." } ], "blockTags": [ @@ -14717,13 +14741,21 @@ }, { "kind": "text", - "text": " uses the global scope, which signs out all other sessions that the user is logged into as well. Customize this behavior by passing a scope parameter.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." + "text": " uses the **global** scope, which signs out the user\n on every device they are signed in on (not just the current one). Pass\n " + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " to only sign out the current session. This is\n usually what apps want on a \"Sign out\" button, especially when users\n sign in from multiple devices and do not expect signing out of one to\n terminate the others.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." } ] }, { "tag": "@example", - "name": "Sign out (all sessions)", + "name": "Sign out of every device (global – default)", "content": [ { "kind": "code", @@ -14733,7 +14765,7 @@ }, { "tag": "@example", - "name": "Sign out (current session)", + "name": "Sign out only the current session (recommended for most apps)", "content": [ { "kind": "code", @@ -14743,7 +14775,7 @@ }, { "tag": "@example", - "name": "Sign out (other sessions)", + "name": "Sign out of all other sessions, keep the current one", "content": [ { "kind": "code", @@ -14756,9 +14788,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ], "parameters": [ @@ -14802,9 +14834,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ], "type": { @@ -14833,9 +14865,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ] } @@ -14858,7 +14890,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 899, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L899" } ], "signatures": [ @@ -15064,7 +15096,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 899, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L899" } ], "parameters": [ @@ -15111,9 +15143,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4930, + "line": 4941, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4941" } ], "signatures": [ @@ -15187,9 +15219,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4930, + "line": 4941, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4941" } ], "type": { @@ -15219,9 +15251,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4965, + "line": 4976, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4965" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4976" } ], "signatures": [ @@ -15281,9 +15313,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4965, + "line": 4976, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4965" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4976" } ], "type": { @@ -15313,9 +15345,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4409, + "line": 4420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4420" } ], "signatures": [ @@ -15374,9 +15406,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4409, + "line": 4420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4420" } ], "parameters": [ @@ -15422,9 +15454,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4411, + "line": 4422, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4411" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4422" } ], "type": { @@ -15447,9 +15479,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4412, + "line": 4423, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4412" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4423" } ], "type": { @@ -15467,9 +15499,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4410, + "line": 4421, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4410" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4421" } ] } @@ -15492,9 +15524,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4414, + "line": 4425, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4425" } ], "type": { @@ -15511,9 +15543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4414, + "line": 4425, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4425" } ], "type": { @@ -15533,9 +15565,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4414, + "line": 4425, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4425" } ] } @@ -15560,7 +15592,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3148, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3148" } ], "signatures": [ @@ -15742,7 +15774,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3148, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3148" } ], "parameters": [ @@ -15787,7 +15819,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3151" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3151" } ], "type": { @@ -15807,7 +15839,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3150, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3150" } ] } @@ -15846,7 +15878,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2281" } ], "signatures": [ @@ -16020,7 +16052,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2281" } ], "parameters": [ @@ -16094,7 +16126,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 217, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L217" } ] }, @@ -16135,7 +16167,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L37" } ], "signatures": [ @@ -16150,7 +16182,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L37" } ], "parameters": [ @@ -16200,7 +16232,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 35, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L35" } ], "type": { @@ -16230,7 +16262,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 52, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L52" } ], "extendedTypes": [ @@ -16289,7 +16321,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 555, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L555" } ], "type": { @@ -16318,7 +16350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 581, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L581" } ], "type": { @@ -16348,7 +16380,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L501" } ], "type": { @@ -16383,7 +16415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L506" } ], "type": { @@ -16417,7 +16449,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 562, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L562" } ], "type": { @@ -16462,7 +16494,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L606" } ], "type": { @@ -16492,7 +16524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 523, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L523" } ], "type": { @@ -16527,7 +16559,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L516" } ], "type": { @@ -16569,7 +16601,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 599, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L599" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L599" } ], "type": { @@ -16599,7 +16631,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L511" } ], "type": { @@ -16633,7 +16665,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L569" } ], "type": { @@ -16694,7 +16726,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 590, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L590" } ], "type": { @@ -16739,7 +16771,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 545, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L545" } ], "type": { @@ -16759,7 +16791,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 534, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L534" } ], "extendedTypes": [ @@ -16837,7 +16869,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L380" } ], "type": { @@ -16866,7 +16898,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L386" } ], "type": { @@ -16886,7 +16918,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 378, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L378" } ] }, @@ -16916,7 +16948,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2605" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2605" } ], "signatures": [ @@ -16959,7 +16991,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2605" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2605" } ], "parameters": [ @@ -17028,7 +17060,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2607, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2607" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2607" } ], "type": { @@ -17048,7 +17080,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2607, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2607" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2607" } ] } @@ -17086,7 +17118,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2624" } ], "signatures": [ @@ -17129,7 +17161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2624" } ], "parameters": [ @@ -17198,7 +17230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2626, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2626" } ], "type": { @@ -17218,7 +17250,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2626, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2626" } ] } @@ -17256,7 +17288,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2589, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2589" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2589" } ], "signatures": [ @@ -17319,7 +17351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2589, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2589" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2589" } ], "parameters": [ @@ -17374,7 +17406,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2637" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2637" } ], "signatures": [ @@ -17417,7 +17449,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2637" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2637" } ], "type": { @@ -17451,7 +17483,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ], "signatures": [ @@ -17494,7 +17526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ], "parameters": [ @@ -17540,7 +17572,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ], "type": { @@ -17560,7 +17592,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ] } @@ -17605,7 +17637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2565, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2565" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2565" } ] }, @@ -17643,7 +17675,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2798, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2798" } ], "signatures": [ @@ -17658,7 +17690,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2798, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2798" } ], "parameters": [ @@ -17707,7 +17739,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2796, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2796" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2796" } ], "signatures": [ @@ -17722,7 +17754,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2796, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2796" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2796" } ], "type": { @@ -17756,7 +17788,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2788, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2788" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2788" } ], "signatures": [ @@ -17771,7 +17803,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2788, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2788" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2788" } ], "parameters": [ @@ -17822,7 +17854,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2782, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2782" } ], "signatures": [ @@ -17837,7 +17869,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2782, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2782" } ], "type": { @@ -17871,7 +17903,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2797, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2797" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2797" } ], "signatures": [ @@ -17886,7 +17918,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2797, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2797" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2797" } ], "parameters": [ @@ -17935,7 +17967,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2791, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2791" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2791" } ], "signatures": [ @@ -17950,7 +17982,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2791, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2791" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2791" } ], "parameters": [ @@ -17999,7 +18031,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2783, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2783" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2783" } ], "signatures": [ @@ -18014,7 +18046,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2783, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2783" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2783" } ], "parameters": [ @@ -18064,7 +18096,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2780, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2780" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2780" } ] }, @@ -18112,7 +18144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 958, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L958" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L958" } ], "type": { @@ -18141,7 +18173,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 960, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L960" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L960" } ], "type": { @@ -18161,7 +18193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 952, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L952" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L952" } ] }, @@ -18191,7 +18223,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2408, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2408" } ], "signatures": [ @@ -18238,7 +18270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2408, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2408" } ], "parameters": [ @@ -18287,7 +18319,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "signatures": [ @@ -18318,7 +18350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "parameters": [ @@ -18361,7 +18393,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "type": { @@ -18380,7 +18412,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "type": { @@ -18411,7 +18443,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ] } @@ -18434,7 +18466,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2415" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2415" } ], "signatures": [ @@ -18465,7 +18497,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2415" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2415" } ], "parameters": [ @@ -18512,7 +18544,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2395, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2395" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2395" } ], "signatures": [ @@ -18543,7 +18575,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2395, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2395" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2395" } ], "parameters": [ @@ -18594,7 +18626,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2427" } ], "signatures": [ @@ -18649,7 +18681,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2427" } ], "parameters": [ @@ -18710,7 +18742,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2389, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2389" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2389" } ] }, @@ -18746,7 +18778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1790, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1790" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1790" } ], "signatures": [ @@ -18818,7 +18850,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1790, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1790" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1790" } ], "parameters": [ @@ -18867,7 +18899,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1760, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1760" } ], "signatures": [ @@ -18924,7 +18956,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1760, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1760" } ], "parameters": [ @@ -18980,7 +19012,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1729, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1729" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1729" } ] }, @@ -19010,7 +19042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2148" } ], "signatures": [ @@ -19052,7 +19084,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2148" } ], "parameters": [ @@ -19101,7 +19133,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "signatures": [ @@ -19143,7 +19175,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "parameters": [ @@ -19186,7 +19218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "type": { @@ -19205,7 +19237,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "type": { @@ -19236,7 +19268,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ] } @@ -19259,7 +19291,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2158" } ], "signatures": [ @@ -19301,7 +19333,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2158" } ], "parameters": [ @@ -19348,7 +19380,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2138" } ], "signatures": [ @@ -19390,7 +19422,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2138" } ], "parameters": [ @@ -19441,7 +19473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2188" } ], "signatures": [ @@ -19483,7 +19515,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2188" } ], "parameters": [ @@ -19530,7 +19562,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2168, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2168" } ], "signatures": [ @@ -19572,7 +19604,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2168, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2168" } ], "parameters": [ @@ -19639,7 +19671,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2129, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2129" } ] }, @@ -19661,7 +19693,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2803, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2803" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2803" } ], "signatures": [ @@ -19676,7 +19708,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2803, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2803" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2803" } ], "parameters": [ @@ -19725,7 +19757,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2802, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2802" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2802" } ], "signatures": [ @@ -19740,7 +19772,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2802, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2802" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2802" } ], "parameters": [ @@ -19790,7 +19822,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2801, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2801" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2801" } ] }, @@ -19820,7 +19852,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1687, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1687" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1687" } ], "type": { @@ -19844,25 +19876,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1425" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1425" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1426" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1427" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1428" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1428" } ], "signatures": [ @@ -19990,7 +20022,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1425" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1425" } ], "parameters": [ @@ -20041,7 +20073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -20060,7 +20092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -20082,7 +20114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20107,7 +20139,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -20131,7 +20163,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -20151,7 +20183,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20174,7 +20206,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1426" } ], "parameters": [ @@ -20222,7 +20254,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -20241,7 +20273,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -20263,7 +20295,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20288,7 +20320,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -20312,7 +20344,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -20332,7 +20364,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20355,7 +20387,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1427" } ], "parameters": [ @@ -20403,7 +20435,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -20422,7 +20454,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -20444,7 +20476,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20469,7 +20501,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -20513,7 +20545,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -20533,7 +20565,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20556,7 +20588,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1428" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1428" } ], "parameters": [ @@ -20605,7 +20637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1617, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1617" } ], "signatures": [ @@ -20695,7 +20727,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1617, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1617" } ], "parameters": [ @@ -20747,25 +20779,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1352" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1353" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1354, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1354" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1354" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1355" } ], "signatures": [ @@ -20958,7 +20990,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1352" } ], "parameters": [ @@ -21005,7 +21037,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1353" } ], "parameters": [ @@ -21052,7 +21084,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1354, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1354" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1354" } ], "parameters": [ @@ -21102,7 +21134,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1355" } ], "parameters": [ @@ -21151,7 +21183,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1682" } ], "signatures": [ @@ -21299,7 +21331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1682" } ], "parameters": [ @@ -21356,7 +21388,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1629" } ], "signatures": [ @@ -21437,7 +21469,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1629" } ], "type": { @@ -21494,7 +21526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1536" } ], "signatures": [ @@ -21567,7 +21599,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1536" } ], "parameters": [ @@ -21616,25 +21648,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1508" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1509" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1510" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1510" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1511" } ], "signatures": [ @@ -21700,7 +21732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1508" } ], "parameters": [ @@ -21747,7 +21779,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1509" } ], "parameters": [ @@ -21794,7 +21826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1510" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1510" } ], "parameters": [ @@ -21841,7 +21873,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1511" } ], "parameters": [ @@ -21905,7 +21937,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1271, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1271" } ] }, @@ -21929,7 +21961,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1988" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1988" } ], "type": { @@ -21948,7 +21980,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1987, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1987" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1987" } ], "type": { @@ -21972,7 +22004,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1989" } ], "type": { @@ -21991,7 +22023,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1986, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1986" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1986" } ], "type": { @@ -22024,7 +22056,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1985, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1985" } ], "indexSignatures": [ @@ -22039,7 +22071,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1990, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1990" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1990" } ], "parameters": [ @@ -22101,7 +22133,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1947" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -22137,7 +22169,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1976" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1976" } ], "type": { @@ -22175,7 +22207,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1968, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1968" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1968" } ], "type": { @@ -22198,7 +22230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1943, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1943" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1943" } ], "type": { @@ -22236,7 +22268,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1961, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1961" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1961" } ], "type": { @@ -22257,7 +22289,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1944" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1944" } ], "type": { @@ -22283,7 +22315,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1945, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1945" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1945" } ], "type": { @@ -22309,7 +22341,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1963" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1963" } ], "type": { @@ -22330,7 +22362,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1941" } ], "type": { @@ -22356,7 +22388,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1966, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1966" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1966" } ], "type": { @@ -22377,7 +22409,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1967" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1967" } ], "type": { @@ -22398,7 +22430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1962, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1962" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1962" } ], "type": { @@ -22419,7 +22451,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1979, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1979" } ], "type": { @@ -22440,7 +22472,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1946" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -22466,7 +22498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1948" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -22492,7 +22524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1942" } ], "type": { @@ -22518,7 +22550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1969, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1969" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1969" } ], "type": { @@ -22543,7 +22575,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1959, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1959" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1959" } ], "indexSignatures": [ @@ -22558,7 +22590,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1982, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1982" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1982" } ], "parameters": [ @@ -22615,7 +22647,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 328, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L328" } ], "type": { @@ -22644,7 +22676,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 340, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L340" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L340" } ], "type": { @@ -22671,7 +22703,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L336" } ], "type": { @@ -22700,7 +22732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 324, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L324" } ], "type": { @@ -22738,7 +22770,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L319" } ], "type": { @@ -22774,7 +22806,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L332" } ], "type": { @@ -22793,7 +22825,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L341" } ], "type": { @@ -22820,7 +22852,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 346, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L346" } ], "type": { @@ -22842,7 +22874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 315, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L315" } ] }, @@ -22872,7 +22904,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L619" } ], "type": { @@ -22888,7 +22920,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 619, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L619" } ], "signatures": [ @@ -22903,7 +22935,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 619, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L619" } ], "parameters": [ @@ -22971,7 +23003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 615, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L615" } ], "type": { @@ -23007,7 +23039,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 623, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L623" } ], "type": { @@ -23023,7 +23055,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 623, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L623" } ], "signatures": [ @@ -23038,7 +23070,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 623, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L623" } ], "type": { @@ -23062,7 +23094,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 609, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L609" } ] }, @@ -23086,7 +23118,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 475, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L475" } ], "type": { @@ -23105,7 +23137,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L466" } ], "type": { @@ -23126,7 +23158,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L468" } ], "type": { @@ -23147,7 +23179,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L490" } ], "type": { @@ -23168,7 +23200,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L469" } ], "type": { @@ -23189,7 +23221,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L479" } ], "type": { @@ -23208,7 +23240,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L478" } ], "type": { @@ -23229,7 +23261,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L489" } ], "type": { @@ -23250,7 +23282,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L476" } ], "type": { @@ -23271,7 +23303,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 471, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L471" } ], "type": { @@ -23292,7 +23324,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 480, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L480" } ], "type": { @@ -23313,7 +23345,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L488" } ], "type": { @@ -23394,7 +23426,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L465" } ], "type": { @@ -23415,7 +23447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 485, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L485" } ], "type": { @@ -23441,7 +23473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L474" } ], "type": { @@ -23462,7 +23494,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 486, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L486" } ], "type": { @@ -23483,7 +23515,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 487, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L487" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L487" } ], "type": { @@ -23504,7 +23536,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 482, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L482" } ], "type": { @@ -23525,7 +23557,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L472" } ], "type": { @@ -23546,7 +23578,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L473" } ], "type": { @@ -23567,7 +23599,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L477" } ], "type": { @@ -23588,7 +23620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 481, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L481" } ], "type": { @@ -23609,7 +23641,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L470" } ], "type": { @@ -23630,7 +23662,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L483" } ], "type": { @@ -23651,7 +23683,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 484, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L484" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L484" } ], "type": { @@ -23670,7 +23702,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L467" } ], "type": { @@ -23695,7 +23727,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 464, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L464" } ] }, @@ -23727,7 +23759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L452" } ], "type": { @@ -23756,7 +23788,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L456" } ], "type": { @@ -23779,7 +23811,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 448, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L448" } ], "indexSignatures": [ @@ -23794,7 +23826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L457" } ], "parameters": [ @@ -23845,7 +23877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L501" } ], "type": { @@ -23890,7 +23922,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L531" } ], "type": { @@ -23919,7 +23951,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L506" } ], "type": { @@ -23948,7 +23980,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 523, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L523" } ], "type": { @@ -23977,7 +24009,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L516" } ], "type": { @@ -24006,7 +24038,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L511" } ], "type": { @@ -24026,7 +24058,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 493, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L493" } ] }, @@ -24050,7 +24082,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L397" } ], "type": { @@ -24069,7 +24101,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 390, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L390" } ], "type": { @@ -24090,7 +24122,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 392, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L392" } ], "type": { @@ -24106,7 +24138,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 392, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L392" } ], "indexSignatures": [ @@ -24121,7 +24153,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 393, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L393" } ], "parameters": [ @@ -24157,7 +24189,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 395, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L395" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L395" } ], "type": { @@ -24178,7 +24210,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 398, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L398" } ], "type": { @@ -24197,7 +24229,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L396" } ], "type": { @@ -24218,7 +24250,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 399, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L399" } ], "type": { @@ -24237,7 +24269,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 391, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L391" } ], "type": { @@ -24257,7 +24289,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 389, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L389" } ] }, @@ -24272,7 +24304,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 460, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L460" } ], "indexSignatures": [ @@ -24287,7 +24319,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L461" } ], "parameters": [ @@ -24336,7 +24368,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 836, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L836" } ], "type": { @@ -24357,7 +24389,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L841" } ], "type": { @@ -24396,7 +24428,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 849, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L849" } ], "type": { @@ -24425,7 +24457,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 843, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L843" } ], "type": { @@ -24445,7 +24477,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 841, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L841" } ] } @@ -24470,7 +24502,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 838, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L838" } ], "type": { @@ -24497,7 +24529,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 840, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L840" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L840" } ], "type": { @@ -24519,7 +24551,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 834, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L834" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L834" } ] }, @@ -24543,7 +24575,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L822" } ], "type": { @@ -24582,7 +24614,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 831, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L831" } ], "type": { @@ -24611,7 +24643,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 824, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L824" } ], "type": { @@ -24631,7 +24663,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 822, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L822" } ] } @@ -24656,7 +24688,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L817" } ], "type": { @@ -24683,7 +24715,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 819, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L819" } ], "type": { @@ -24710,7 +24742,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L821" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L821" } ], "type": { @@ -24732,7 +24764,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 815, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L815" } ] }, @@ -24762,7 +24794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 855, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L855" } ], "type": { @@ -24789,7 +24821,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 858, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L858" } ], "type": { @@ -24811,7 +24843,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 853, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L853" } ] }, @@ -24826,7 +24858,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 364, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L364" } ], "type": { @@ -24872,7 +24904,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 364, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L364" } ] } @@ -24893,7 +24925,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L54" } ], "type": { @@ -24943,7 +24975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 52, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L52" } ], "type": { @@ -24962,7 +24994,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1241, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1241" } ], "type": { @@ -24990,7 +25022,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 696, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L696" } ], "type": { @@ -25027,7 +25059,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1700, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1700" } ], "type": { @@ -25058,7 +25090,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1702, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1702" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1702" } ], "type": { @@ -25085,7 +25117,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1705" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1705" } ], "type": { @@ -25105,7 +25137,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1700, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1700" } ] } @@ -25131,7 +25163,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1693, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1693" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1693" } ], "type": { @@ -25166,7 +25198,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1695, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1695" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1695" } ], "type": { @@ -25186,7 +25218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1693, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1693" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1693" } ] } @@ -25216,7 +25248,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1719" } ], "type": { @@ -25247,7 +25279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1721" } ], "type": { @@ -25267,7 +25299,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1719" } ] } @@ -25293,7 +25325,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1711, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1711" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1711" } ], "type": { @@ -25328,7 +25360,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1713, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1713" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1713" } ], "type": { @@ -25353,7 +25385,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1711, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1711" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1711" } ] } @@ -25374,7 +25406,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1172, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1172" } ], "type": { @@ -25426,7 +25458,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1223, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1223" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1223" } ], "type": { @@ -25464,7 +25496,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1164, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1164" } ], "type": { @@ -25537,7 +25569,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1193, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1193" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1193" } ], "type": { @@ -25597,7 +25629,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1213" } ], "type": { @@ -25649,7 +25681,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1220, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1220" } ], "type": { @@ -25678,7 +25710,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1917, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1917" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1917" } ], "type": { @@ -25730,7 +25762,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1139, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1139" } ], "type": { @@ -25768,7 +25800,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1908, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1908" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1908" } ], "type": { @@ -25841,7 +25873,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1930, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1930" } ], "type": { @@ -25893,7 +25925,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1243, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1243" } ], "type": { @@ -25928,7 +25960,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1264" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1264" } ], "type": { @@ -25972,7 +26004,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1245" } ], "type": { @@ -26023,7 +26055,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1253" } ], "type": { @@ -26054,7 +26086,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1243, "character": 74, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1243" } ] } @@ -26083,7 +26115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1229, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1229" } ], "typeParameters": [ @@ -26156,7 +26188,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1233" } ], "type": { @@ -26181,7 +26213,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1231, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1231" } ] } @@ -26247,7 +26279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1144" } ], "type": { @@ -26282,7 +26314,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1146" } ], "type": { @@ -26302,7 +26334,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1144, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1144" } ] } @@ -26331,7 +26363,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1137, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1137" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1137" } ], "type": { @@ -26368,7 +26400,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1116, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1116" } ], "type": { @@ -26399,7 +26431,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1118, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1118" } ], "type": { @@ -26426,7 +26458,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1124, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1124" } ], "type": { @@ -26453,7 +26485,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1127" } ], "type": { @@ -26488,7 +26520,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1121" } ], "type": { @@ -26515,7 +26547,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1130" } ], "type": { @@ -26537,7 +26569,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1116, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1116" } ] } @@ -26573,7 +26605,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2524, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2524" } ], "type": { @@ -26621,7 +26653,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2532, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2532" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2532" } ], "type": { @@ -26658,7 +26690,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2551, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2551" } ], "type": { @@ -26698,7 +26730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2557, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2557" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2557" } ], "type": { @@ -26718,7 +26750,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2557, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2557" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2557" } ] } @@ -26752,7 +26784,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 267, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L267" } ], "type": { @@ -26781,7 +26813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L270" } ], "type": { @@ -26809,7 +26841,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L269" } ], "type": { @@ -26828,7 +26860,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 268, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L268" } ], "type": { @@ -26848,7 +26880,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 267, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L267" } ] } @@ -26869,7 +26901,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2769, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2769" } ], "type": { @@ -26892,7 +26924,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2771, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2771" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2771" } ], "type": { @@ -26911,7 +26943,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2770, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2770" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2770" } ], "type": { @@ -26931,7 +26963,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2769, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2769" } ] } @@ -26948,7 +26980,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2765, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2765" } ], "type": { @@ -26971,7 +27003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2766, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2766" } ], "type": { @@ -26991,7 +27023,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2765, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2765" } ] } @@ -27008,7 +27040,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2753, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2753" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2753" } ], "type": { @@ -27037,7 +27069,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2755, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2755" } ], "type": { @@ -27064,7 +27096,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2756, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2756" } ], "type": { @@ -27094,7 +27126,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2756, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2756" } ], "type": { @@ -27125,7 +27157,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2756, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2756" } ] } @@ -27166,7 +27198,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2761, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2761" } ], "type": { @@ -27193,7 +27225,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2759, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2759" } ], "type": { @@ -27225,7 +27257,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2747, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2747" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2747" } ], "type": { @@ -27254,7 +27286,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2749, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2749" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2749" } ], "type": { @@ -27303,7 +27335,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2760, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2760" } ], "type": { @@ -27332,7 +27364,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 251, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L251" } ], "type": { @@ -27359,7 +27391,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L253" } ], "type": { @@ -27389,7 +27421,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L252" } ], "type": { @@ -27420,7 +27452,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 251, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L251" } ] } @@ -27441,7 +27473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 256, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L256" } ], "type": { @@ -27468,7 +27500,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L258" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L258" } ], "type": { @@ -27498,7 +27530,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L257" } ], "type": { @@ -27530,7 +27562,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L259" } ], "type": { @@ -27561,7 +27593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 256, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L256" } ] } @@ -27582,7 +27614,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 273, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L273" } ], "type": { @@ -27609,7 +27641,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L275" } ], "type": { @@ -27630,7 +27662,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L274" } ], "type": { @@ -27652,7 +27684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 273, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L273" } ] } @@ -27673,7 +27705,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 278, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L278" } ], "type": { @@ -27700,7 +27732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L280" } ], "type": { @@ -27721,7 +27753,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L279" } ], "type": { @@ -27744,7 +27776,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 281, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L281" } ], "type": { @@ -27766,7 +27798,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 278, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L278" } ] } @@ -27787,7 +27819,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1817, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1817" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1817" } ], "type": { @@ -27824,7 +27856,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2277, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2277" } ], "type": { @@ -27857,7 +27889,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2289" } ], "type": { @@ -27889,7 +27921,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2295" } ], "type": { @@ -27933,7 +27965,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2297" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2297" } ], "type": { @@ -27977,7 +28009,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2309" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2309" } ], "type": { @@ -28004,7 +28036,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2285, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2285" } ], "type": { @@ -28031,7 +28063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2287, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2287" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2287" } ], "type": { @@ -28060,7 +28092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2305, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2305" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2305" } ], "type": { @@ -28089,7 +28121,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2301" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2301" } ], "type": { @@ -28118,7 +28150,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2299, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2299" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2299" } ], "type": { @@ -28153,7 +28185,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2281, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2281" } ], "type": { @@ -28182,7 +28214,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2303, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2303" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2303" } ], "type": { @@ -28211,7 +28243,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2315, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2315" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2315" } ], "type": { @@ -28238,7 +28270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2283, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2283" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2283" } ], "type": { @@ -28267,7 +28299,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2293, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2293" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2293" } ], "type": { @@ -28294,7 +28326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2279" } ], "type": { @@ -28325,7 +28357,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2291" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2291" } ], "type": { @@ -28357,7 +28389,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2307, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2307" } ], "type": { @@ -28386,7 +28418,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2311, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2311" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2311" } ], "type": { @@ -28415,7 +28447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2313, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2313" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2313" } ], "type": { @@ -28438,7 +28470,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2277, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2277" } ] } @@ -28463,7 +28495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2068, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2068" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2068" } ], "type": { @@ -28494,7 +28526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2070, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2070" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2070" } ], "type": { @@ -28523,7 +28555,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2072, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2072" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2072" } ], "type": { @@ -28552,7 +28584,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2076, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2076" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2076" } ], "type": { @@ -28584,7 +28616,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2074, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2074" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2074" } ], "type": { @@ -28616,7 +28648,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2078, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2078" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2078" } ], "type": { @@ -28650,7 +28682,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2080, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2080" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2080" } ], "type": { @@ -28679,7 +28711,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2082, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2082" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2082" } ], "type": { @@ -28701,7 +28733,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2068, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2068" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2068" } ] } @@ -28726,7 +28758,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2227, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2227" } ], "type": { @@ -28759,7 +28791,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2239" } ], "type": { @@ -28791,7 +28823,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2245" } ], "type": { @@ -28835,7 +28867,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2247" } ], "type": { @@ -28879,7 +28911,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2259" } ], "type": { @@ -28906,7 +28938,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2237, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2237" } ], "type": { @@ -28933,7 +28965,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2269" } ], "type": { @@ -28962,7 +28994,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2267" } ], "type": { @@ -29002,7 +29034,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2255" } ], "type": { @@ -29031,7 +29063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2251" } ], "type": { @@ -29060,7 +29092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2249" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2249" } ], "type": { @@ -29087,7 +29119,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2229" } ], "type": { @@ -29122,7 +29154,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2233" } ], "type": { @@ -29151,7 +29183,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2253" } ], "type": { @@ -29180,7 +29212,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2265, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2265" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2265" } ], "type": { @@ -29207,7 +29239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2235" } ], "type": { @@ -29236,7 +29268,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2243, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2243" } ], "type": { @@ -29263,7 +29295,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2231, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2231" } ], "type": { @@ -29294,7 +29326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2241" } ], "type": { @@ -29326,7 +29358,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2257" } ], "type": { @@ -29355,7 +29387,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2261" } ], "type": { @@ -29382,7 +29414,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2271, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2271" } ], "type": { @@ -29411,7 +29443,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2263" } ], "type": { @@ -29434,7 +29466,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2227, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2227" } ] } @@ -29459,7 +29491,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2376, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2376" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2376" } ], "type": { @@ -29485,7 +29517,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2378, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2378" } ], "type": { @@ -29508,7 +29540,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2378, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2378" } ], "type": { @@ -29533,7 +29565,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2378, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2378" } ] } @@ -29550,7 +29582,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2379" } ], "type": { @@ -29570,7 +29602,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2377, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2377" } ] } @@ -29595,7 +29627,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2382, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2382" } ], "type": { @@ -29618,7 +29650,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2382, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2382" } ], "type": { @@ -29637,7 +29669,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2382, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2382" } ] } @@ -29654,7 +29686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2383, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2383" } ], "type": { @@ -29676,7 +29708,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2381, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2381" } ] } @@ -29703,7 +29735,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2371, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2371" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2371" } ], "type": { @@ -29740,7 +29772,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2194, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2194" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2194" } ], "type": { @@ -29768,7 +29800,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 862, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L862" } ], "type": { @@ -29812,7 +29844,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 773, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L773" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L773" } ], "type": { @@ -29836,7 +29868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 775, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L775" } ], "type": { @@ -29862,7 +29894,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 777, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L777" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L777" } ], "type": { @@ -29883,7 +29915,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 785, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L785" } ], "type": { @@ -29916,7 +29948,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 790, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L790" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L790" } ], "type": { @@ -29937,7 +29969,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 792, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L792" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L792" } ], "type": { @@ -30014,7 +30046,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 787, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L787" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L787" } ], "type": { @@ -30034,7 +30066,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 785, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L785" } ] } @@ -30061,7 +30093,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 783, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L783" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L783" } ], "type": { @@ -30098,7 +30130,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 780, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L780" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L780" } ], "type": { @@ -30120,7 +30152,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 776, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L776" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L776" } ] } @@ -30145,7 +30177,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 798, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L798" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L798" } ], "type": { @@ -30196,7 +30228,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 801, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L801" } ], "type": { @@ -30217,7 +30249,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 806, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L806" } ], "type": { @@ -30250,7 +30282,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 808, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L808" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L808" } ], "type": { @@ -30270,7 +30302,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 806, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L806" } ] } @@ -30295,7 +30327,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 804, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L804" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L804" } ], "type": { @@ -30320,7 +30352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 797, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L797" } ] } @@ -30339,7 +30371,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 193, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L193" } ], "type": { @@ -30412,7 +30444,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L203" } ], "type": { @@ -30432,7 +30464,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 193, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L193" } ] } @@ -30505,7 +30537,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 423, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L423" } ], "typeParameters": [ @@ -30585,7 +30617,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 443, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L443" } ], "type": { @@ -30628,7 +30660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L436" } ], "type": { @@ -30660,7 +30692,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 431, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L431" } ], "type": { @@ -30687,7 +30719,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L428" } ], "type": { @@ -30708,7 +30740,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L445" } ], "type": { @@ -30763,7 +30795,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L441" } ], "type": { @@ -30785,7 +30817,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L444" } ], "type": { @@ -30805,7 +30837,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 426, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L426" } ] } @@ -30846,7 +30878,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 407, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L407" } ], "type": { @@ -30881,7 +30913,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 941, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L941" } ], "type": { @@ -30912,7 +30944,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L944" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L944" } ], "type": { @@ -30939,7 +30971,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L948" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L948" } ], "type": { @@ -30960,7 +30992,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 949, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L949" } ], "type": { @@ -30996,7 +31028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L942" } ], "type": { @@ -31025,7 +31057,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 941, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L941" } ] } @@ -31042,7 +31074,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 927, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L927" } ], "type": { @@ -31073,7 +31105,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L930" } ], "type": { @@ -31094,7 +31126,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 931, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L931" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L931" } ], "type": { @@ -31139,7 +31171,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L928" } ], "type": { @@ -31168,7 +31200,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 927, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L927" } ] } @@ -31185,7 +31217,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -31237,7 +31269,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 975, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L975" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L975" } ], "type": { @@ -31268,7 +31300,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 980, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L980" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L980" } ], "type": { @@ -31295,7 +31327,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L985" } ], "type": { @@ -31322,7 +31354,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L989" } ], "type": { @@ -31349,7 +31381,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 991, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L991" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L991" } ], "type": { @@ -31376,7 +31408,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L993" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L993" } ], "type": { @@ -31398,7 +31430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 975, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L975" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L975" } ] } @@ -31415,7 +31447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 969, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L969" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L969" } ], "type": { @@ -31442,7 +31474,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L970" } ], "type": { @@ -31463,7 +31495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L971" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L971" } ], "type": { @@ -31485,7 +31517,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 969, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L969" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L969" } ] } @@ -31506,7 +31538,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 996, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L996" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L996" } ], "type": { @@ -31550,7 +31582,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 934, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L934" } ], "type": { @@ -31581,7 +31613,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L937" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L937" } ], "type": { @@ -31602,7 +31634,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 938, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L938" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L938" } ], "type": { @@ -31638,7 +31670,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L935" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L935" } ], "type": { @@ -31658,7 +31690,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 934, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L934" } ] } @@ -31675,7 +31707,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 920, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L920" } ], "type": { @@ -31698,7 +31730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 922, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L922" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L922" } ], "type": { @@ -31719,7 +31751,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 924, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L924" } ], "type": { @@ -31764,7 +31796,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L923" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L923" } ], "type": { @@ -31783,7 +31815,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 921, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L921" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L921" } ], "type": { @@ -31803,7 +31835,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 920, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L920" } ] } @@ -31820,7 +31852,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L80" } ], "type": { @@ -31845,7 +31877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L109" } ], "type": { @@ -31866,7 +31898,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L127" } ], "type": { @@ -31889,7 +31921,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L127" } ], "signatures": [ @@ -31971,7 +32003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "type": { @@ -31994,7 +32026,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "signatures": [ @@ -32040,7 +32072,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "indexSignatures": [ @@ -32055,7 +32087,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "parameters": [ @@ -32114,7 +32146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L190" } ], "type": { @@ -32137,7 +32169,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L123" } ], "type": { @@ -32163,7 +32195,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L125" } ], "type": { @@ -32195,7 +32227,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L141" } ], "type": { @@ -32216,7 +32248,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L84" } ], "type": { @@ -32232,7 +32264,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L84" } ], "indexSignatures": [ @@ -32247,7 +32279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L84" } ], "parameters": [ @@ -32310,7 +32342,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L136" } ], "type": { @@ -32377,7 +32409,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 173, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L173" } ], "type": { @@ -32398,7 +32430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L111" } ], "type": { @@ -32438,7 +32470,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L182" } ], "type": { @@ -32459,7 +32491,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L113" } ], "type": { @@ -32482,7 +32514,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L86" } ], "type": { @@ -32511,7 +32543,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L146" } ], "type": { @@ -32532,7 +32564,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L82" } ], "type": { @@ -32602,7 +32634,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L121" } ], "type": { @@ -32626,7 +32658,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L80" } ] } @@ -32643,7 +32675,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1815, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1815" } ], "type": { @@ -32666,7 +32698,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1815, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1815" } ], "type": { @@ -32697,7 +32729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1815, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1815" } ] } @@ -32714,7 +32746,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1934, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1934" } ], "type": { @@ -32737,7 +32769,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1935, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1935" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1935" } ], "type": { @@ -32769,7 +32801,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1936, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1936" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1936" } ], "type": { @@ -32788,7 +32820,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1937, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1937" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1937" } ], "type": { @@ -32808,7 +32840,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1934, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1934" } ] } @@ -32833,7 +32865,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2363, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2363" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2363" } ], "type": { @@ -32866,7 +32898,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2365, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2365" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2365" } ], "type": { @@ -32888,7 +32920,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2363, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2363" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2363" } ] } @@ -32922,7 +32954,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L78" } ], "type": { @@ -32938,7 +32970,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -33031,7 +33063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -33099,7 +33131,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1110, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1110" } ], "type": { @@ -33123,7 +33155,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1098, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1098" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1098" } ], "type": { @@ -33161,7 +33193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1079, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1079" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1079" } ], "type": { @@ -33199,7 +33231,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1072, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1072" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1072" } ], "type": { @@ -33244,7 +33276,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1096, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1096" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1096" } ], "type": { @@ -33282,7 +33314,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1004, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1004" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1004" } ], "type": { @@ -33320,7 +33352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1865, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1865" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1865" } ], "type": { @@ -33364,7 +33396,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1859, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1859" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1859" } ], "type": { @@ -33429,7 +33461,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1876, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1876" } ], "type": { @@ -33473,7 +33505,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1070, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1070" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1070" } ], "type": { @@ -33508,7 +33540,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1006, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1006" } ], "type": { @@ -33539,7 +33571,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1008, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1008" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1008" } ], "type": { @@ -33559,7 +33591,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1006, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1006" } ] } @@ -33576,7 +33608,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1062, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1062" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1062" } ], "type": { @@ -33614,7 +33646,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1027, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1027" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1027" } ], "type": { @@ -33652,7 +33684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1023, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1023" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1023" } ], "type": { @@ -33698,7 +33730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1049, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1049" } ], "typeParameters": [ @@ -33764,7 +33796,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1050, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1050" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1050" } ], "type": { @@ -33812,7 +33844,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1049, "character": 98, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1049" } ] } @@ -33850,7 +33882,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1059" } ], "typeParameters": [ @@ -33937,7 +33969,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 861, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L861" } ], "type": { @@ -33973,7 +34005,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2444, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2444" } ], "type": { @@ -34004,7 +34036,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2446, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2446" } ], "type": { @@ -34031,7 +34063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2452" } ], "type": { @@ -34058,7 +34090,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2448" } ], "type": { @@ -34085,7 +34117,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2450" } ], "type": { @@ -34105,7 +34137,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2444, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2444" } ] } @@ -34146,7 +34178,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2466, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2466" } ], "type": { @@ -34177,7 +34209,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2468" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2468" } ], "type": { @@ -34204,7 +34236,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2472" } ], "type": { @@ -34233,7 +34265,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2470" } ], "type": { @@ -34260,7 +34292,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2481, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2481" } ], "type": { @@ -34287,7 +34319,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2474" } ], "type": { @@ -34318,7 +34350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2478, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2478" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2478" } ], "type": { @@ -34345,7 +34377,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2476, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2476" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2476" } ], "type": { @@ -34365,7 +34397,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2474, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2474" } ] } @@ -34383,7 +34415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2466, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2466" } ] } @@ -34408,7 +34440,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2033, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2033" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2033" } ], "type": { @@ -34439,7 +34471,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2035, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2035" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2035" } ], "type": { @@ -34466,7 +34498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2037, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2037" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2037" } ], "type": { @@ -34495,7 +34527,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2039, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2039" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2039" } ], "type": { @@ -34522,7 +34554,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2041, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2041" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2041" } ], "type": { @@ -34553,7 +34585,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2047, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2047" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2047" } ], "type": { @@ -34580,7 +34612,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2059" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2059" } ], "type": { @@ -34607,7 +34639,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2053" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2053" } ], "type": { @@ -34641,7 +34673,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2049, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2049" } ], "type": { @@ -34668,7 +34700,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2051, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2051" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2051" } ], "type": { @@ -34698,7 +34730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2045, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2045" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2045" } ], "type": { @@ -34727,7 +34759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2055, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2055" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2055" } ], "type": { @@ -34761,7 +34793,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2057, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2057" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2057" } ], "type": { @@ -34788,7 +34820,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2043, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2043" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2043" } ], "type": { @@ -34817,7 +34849,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2061, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2061" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2061" } ], "type": { @@ -34839,7 +34871,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2033, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2033" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2033" } ] } @@ -34864,7 +34896,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2000, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2000" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2000" } ], "type": { @@ -34900,7 +34932,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2115, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2115" } ], "type": { @@ -34926,7 +34958,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ], "type": { @@ -34952,7 +34984,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ], "type": { @@ -34971,7 +35003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ], "type": { @@ -34996,7 +35028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ] } @@ -35021,7 +35053,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2118, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2118" } ], "type": { @@ -35041,7 +35073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2116" } ] } @@ -35066,7 +35098,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2121, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2121" } ], "type": { @@ -35089,7 +35121,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2121, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2121" } ], "type": { @@ -35108,7 +35140,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2121, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2121" } ] } @@ -35125,7 +35157,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -35147,7 +35179,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2120" } ] } @@ -35174,7 +35206,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2018, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2018" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2018" } ], "type": { @@ -35210,7 +35242,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2109" } ], "type": { @@ -35247,7 +35279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2006, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2006" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2006" } ], "type": { @@ -35274,7 +35306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2024, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2024" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2024" } ], "type": { @@ -35314,7 +35346,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2012, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2012" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2012" } ], "type": { @@ -35350,7 +35382,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2538, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2538" } ], "type": { @@ -35381,7 +35413,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2540, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2540" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2540" } ], "type": { @@ -35410,7 +35442,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2544, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2544" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2544" } ], "type": { @@ -35437,7 +35469,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2542" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2542" } ], "type": { @@ -35460,7 +35492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2538, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2538" } ] } @@ -35493,7 +35525,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2497, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2497" } ], "type": { @@ -35524,7 +35556,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2499, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2499" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2499" } ], "type": { @@ -35544,7 +35576,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2497, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2497" } ] } @@ -35561,7 +35593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 284, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L284" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L284" } ], "type": { @@ -35587,7 +35619,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L286" } ], "type": { @@ -35610,7 +35642,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 287, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L287" } ], "type": { @@ -35631,7 +35663,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 288, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L288" } ], "type": { @@ -35651,7 +35683,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 286, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L286" } ] } @@ -35668,7 +35700,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 290, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L290" } ], "type": { @@ -35688,7 +35720,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 285, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L285" } ] } @@ -35713,7 +35745,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 293, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L293" } ], "type": { @@ -35736,7 +35768,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 294, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L294" } ], "type": { @@ -35757,7 +35789,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 295, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L295" } ], "type": { @@ -35777,7 +35809,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 293, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L293" } ] } @@ -35794,7 +35826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 297, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L297" } ], "type": { @@ -35816,7 +35848,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 292, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L292" } ] } @@ -35843,7 +35875,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2201, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2201" } ], "type": { @@ -35874,7 +35906,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2205, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2205" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2205" } ], "type": { @@ -35901,7 +35933,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2203" } ], "type": { @@ -35928,7 +35960,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2209, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2209" } ], "type": { @@ -35957,7 +35989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2213" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2213" } ], "type": { @@ -35986,7 +36018,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2221, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2221" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2221" } ], "type": { @@ -36018,7 +36050,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2217" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2217" } ], "type": { @@ -36050,7 +36082,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2215" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2215" } ], "type": { @@ -36082,7 +36114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2219, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2219" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2219" } ], "type": { @@ -36112,7 +36144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2207, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2207" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2207" } ], "type": { @@ -36141,7 +36173,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2211" } ], "type": { @@ -36161,7 +36193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2201, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2201" } ] } @@ -36178,7 +36210,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1826, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1826" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1826" } ], "type": { @@ -36211,7 +36243,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1828, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1828" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1828" } ], "type": { @@ -36240,7 +36272,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1830" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1830" } ], "type": { @@ -36260,7 +36292,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1826, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1826" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1826" } ] } @@ -36277,7 +36309,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1819, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1819" } ], "type": { @@ -36300,7 +36332,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1822" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1822" } ], "type": { @@ -36319,7 +36351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1821, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1821" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1821" } ], "type": { @@ -36347,7 +36379,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1823, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1823" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1823" } ], "type": { @@ -36367,7 +36399,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1819, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1819" } ], "indexSignatures": [ @@ -36382,7 +36414,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1820, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1820" } ], "parameters": [ @@ -36426,7 +36458,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2678, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2678" } ], "type": { @@ -36449,7 +36481,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2679, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2679" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2679" } ], "type": { @@ -36468,7 +36500,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2681, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2681" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2681" } ], "type": { @@ -36487,7 +36519,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2680, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2680" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2680" } ], "type": { @@ -36512,7 +36544,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2678, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2678" } ] } @@ -36537,7 +36569,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2685, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2685" } ], "type": { @@ -36560,7 +36592,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2686, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2686" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2686" } ], "type": { @@ -36579,7 +36611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2687, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2687" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2687" } ], "type": { @@ -36604,7 +36636,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2685, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2685" } ] } @@ -36621,7 +36653,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2740, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2740" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2740" } ], "type": { @@ -36652,7 +36684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2742" } ], "type": { @@ -36672,7 +36704,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2740, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2740" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2740" } ] } @@ -36697,7 +36729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2691, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2691" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2691" } ], "type": { @@ -36720,7 +36752,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2694, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2694" } ], "type": { @@ -36741,7 +36773,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2693, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2693" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2693" } ], "type": { @@ -36760,7 +36792,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2692" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2692" } ], "type": { @@ -36781,7 +36813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2695, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2695" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2695" } ], "type": { @@ -36801,7 +36833,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2691, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2691" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2691" } ] } @@ -36826,7 +36858,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2671, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2671" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2671" } ], "type": { @@ -36849,7 +36881,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2674, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2674" } ], "type": { @@ -36870,7 +36902,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2673, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2673" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2673" } ], "type": { @@ -36889,7 +36921,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2672" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2672" } ], "type": { @@ -36909,7 +36941,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2671, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2671" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2671" } ] } @@ -36934,7 +36966,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2658, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2658" } ], "type": { @@ -36957,7 +36989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2659, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2659" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2659" } ], "type": { @@ -36976,7 +37008,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2661, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2661" } ], "type": { @@ -36995,7 +37027,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2660, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2660" } ], "type": { @@ -37020,7 +37052,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2658, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2658" } ] } @@ -37045,7 +37077,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2665, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2665" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2665" } ], "type": { @@ -37068,7 +37100,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2666, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2666" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2666" } ], "type": { @@ -37087,7 +37119,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2667" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2667" } ], "type": { @@ -37112,7 +37144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2665, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2665" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2665" } ] } @@ -37129,7 +37161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2733, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2733" } ], "type": { @@ -37160,7 +37192,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2737, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2737" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2737" } ], "type": { @@ -37187,7 +37219,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2735, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2735" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2735" } ], "type": { @@ -37207,7 +37239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2733, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2733" } ] } @@ -37232,7 +37264,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ], "typeParameters": [ @@ -37341,7 +37373,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L24" } ], "type": { @@ -37502,7 +37534,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2707, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2707" } ], "type": { @@ -37527,7 +37559,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2708" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2708" } ], "type": { @@ -37552,7 +37584,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2709, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2709" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2709" } ], "type": { @@ -37577,7 +37609,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2708, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2708" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2708" } ] } @@ -37595,7 +37627,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2707, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2707" } ] } @@ -37620,7 +37652,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 230, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L230" } ], "typeParameters": [ @@ -37677,7 +37709,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -37699,7 +37731,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -37719,7 +37751,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 231, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L231" } ] } @@ -37744,7 +37776,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -37763,7 +37795,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -37810,7 +37842,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L235" } ] } @@ -37842,7 +37874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 244, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L244" } ], "typeParameters": [ @@ -37877,7 +37909,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 245, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L245" } ], "type": { @@ -37899,7 +37931,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 245, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L245" } ], "type": { @@ -37919,7 +37951,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 245, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L245" } ] } @@ -37944,7 +37976,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 247, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L247" } ], "type": { @@ -37996,7 +38028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 248, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L248" } ], "type": { @@ -38018,7 +38050,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 246, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L246" } ] } @@ -38037,7 +38069,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1940, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1940" } ], "type": { @@ -38060,7 +38092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1947" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -38081,7 +38113,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1943, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1943" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1943" } ], "type": { @@ -38112,7 +38144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1944" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1944" } ], "type": { @@ -38131,7 +38163,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1945, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1945" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1945" } ], "type": { @@ -38150,7 +38182,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1941" } ], "type": { @@ -38169,7 +38201,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1946" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -38188,7 +38220,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1948" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -38207,7 +38239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1942" } ], "type": { @@ -38227,7 +38259,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1940, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1940" } ] } @@ -38251,7 +38283,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 864, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L864" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L864" } ], "type": { @@ -38277,7 +38309,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 867, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L867" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L867" } ], "type": { @@ -38298,7 +38330,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 868, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L868" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L868" } ], "type": { @@ -38331,7 +38363,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 872, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L872" } ], "type": { @@ -38360,7 +38392,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 870, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L870" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L870" } ], "type": { @@ -38380,7 +38412,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 868, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L868" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L868" } ] } @@ -38397,7 +38429,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 866, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L866" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L866" } ], "type": { @@ -38443,7 +38475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 865, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L865" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L865" } ] } @@ -38470,7 +38502,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 878, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L878" } ], "type": { @@ -38503,7 +38535,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 880, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L880" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L880" } ], "type": { @@ -38523,7 +38555,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 878, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L878" } ] } @@ -38540,7 +38572,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 877, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L877" } ], "type": { @@ -38559,7 +38591,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 876, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L876" } ], "type": { @@ -38605,7 +38637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 875, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L875" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L875" } ] } @@ -38624,7 +38656,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L626" } ], "type": { @@ -38649,7 +38681,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L627" } ], "type": { @@ -38682,7 +38714,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 635, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L635" } ], "type": { @@ -38727,7 +38759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 633, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L633" } ], "type": { @@ -38747,7 +38779,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L627" } ] } @@ -38765,7 +38797,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L626" } ] } @@ -38782,7 +38814,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 712, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L712" } ], "type": { @@ -38823,7 +38855,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L718" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L718" } ], "type": { @@ -38860,7 +38892,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 720, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L720" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L720" } ], "type": { @@ -38881,7 +38913,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L721" } ], "type": { @@ -38914,7 +38946,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 723, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L723" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L723" } ], "type": { @@ -38934,7 +38966,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 721, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L721" } ] } @@ -39023,7 +39055,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 714, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L714" } ], "type": { @@ -39082,7 +39114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 714, "character": 97, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L714" } ] } @@ -39143,7 +39175,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 716, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L716" } ], "type": { @@ -39163,7 +39195,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 712, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L712" } ] } @@ -39180,7 +39212,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 697, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L697" } ], "type": { @@ -39205,7 +39237,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 700, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L700" } ], "type": { @@ -39238,7 +39270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 706, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L706" } ], "type": { @@ -39254,7 +39286,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 706, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L706" } ], "indexSignatures": [ @@ -39269,7 +39301,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 706, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L706" } ], "parameters": [ @@ -39315,7 +39347,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L702" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L702" } ], "type": { @@ -39344,7 +39376,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 704, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L704" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L704" } ], "type": { @@ -39373,7 +39405,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 708, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L708" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L708" } ], "type": { @@ -39393,7 +39425,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 700, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L700" } ] } @@ -39418,7 +39450,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 699, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L699" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L699" } ], "type": { @@ -39440,7 +39472,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 697, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L697" } ] } @@ -39457,7 +39489,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2700, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2700" } ], "type": { @@ -39482,7 +39514,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2701, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2701" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2701" } ], "type": { @@ -39507,7 +39539,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2702, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2702" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2702" } ], "type": { @@ -39528,7 +39560,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2703, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2703" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2703" } ], "type": { @@ -39553,7 +39585,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2701, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2701" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2701" } ] } @@ -39571,7 +39603,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2700, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2700" } ] } @@ -39588,7 +39620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 652, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L652" } ], "type": { @@ -39625,7 +39657,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L653" } ], "type": { @@ -39650,7 +39682,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 654, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L654" } ], "type": { @@ -39670,7 +39702,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 653, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L653" } ] } @@ -39688,7 +39720,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 652, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L652" } ] } @@ -39707,7 +39739,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 658, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L658" } ], "type": { @@ -39741,7 +39773,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 661, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L661" } ], "type": { @@ -39762,7 +39794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 662, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L662" } ], "type": { @@ -39795,7 +39827,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L674" } ], "type": { @@ -39840,7 +39872,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 672, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L672" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L672" } ], "type": { @@ -39869,7 +39901,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 664, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L664" } ], "type": { @@ -39898,7 +39930,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 666, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L666" } ], "type": { @@ -39918,7 +39950,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 662, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L662" } ] } @@ -39936,7 +39968,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 659, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L659" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L659" } ] } @@ -39963,7 +39995,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 680, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L680" } ], "type": { @@ -39996,7 +40028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 690, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L690" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L690" } ], "type": { @@ -40025,7 +40057,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L692" } ], "type": { @@ -40079,7 +40111,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 688, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L688" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L688" } ], "type": { @@ -40108,7 +40140,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 682, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L682" } ], "type": { @@ -40128,7 +40160,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 680, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L680" } ] } @@ -40153,7 +40185,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 679, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L679" } ], "type": { @@ -40173,7 +40205,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 677, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L677" } ] } @@ -40192,7 +40224,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 884, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L884" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L884" } ], "type": { @@ -40220,7 +40252,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 889, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L889" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L889" } ], "type": { @@ -40253,7 +40285,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 893, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L893" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L893" } ], "type": { @@ -40282,7 +40314,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 891, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L891" } ], "type": { @@ -40311,7 +40343,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 899, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L899" } ], "type": { @@ -40331,7 +40363,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 889, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L889" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L889" } ] } @@ -40356,7 +40388,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 887, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L887" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L887" } ], "type": { @@ -40376,7 +40408,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 885, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L885" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L885" } ] } @@ -40409,7 +40441,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 904, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L904" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L904" } ], "type": { @@ -40430,7 +40462,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 906, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L906" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L906" } ], "type": { @@ -40463,7 +40495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -40492,7 +40524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 908, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L908" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L908" } ], "type": { @@ -40521,7 +40553,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 916, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L916" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L916" } ], "type": { @@ -40541,7 +40573,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 906, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L906" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L906" } ] } @@ -40559,7 +40591,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 902, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L902" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L902" } ] } @@ -40578,7 +40610,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1833, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1833" } ], "type": { @@ -40611,7 +40643,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1844, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1844" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1844" } ], "type": { @@ -40644,7 +40676,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1833, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1833" } ] } @@ -40661,7 +40693,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1994, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1994" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1994" } ], "type": { @@ -40692,7 +40724,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 639, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L639" } ], "type": { @@ -40729,7 +40761,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 640, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L640" } ], "type": { @@ -40754,7 +40786,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 643, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L643" } ], "type": { @@ -40775,7 +40807,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 644, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L644" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L644" } ], "type": { @@ -40805,7 +40837,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L642" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L642" } ], "type": { @@ -40826,7 +40858,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 641, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L641" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L641" } ], "type": { @@ -40846,7 +40878,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 640, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L640" } ] } @@ -40864,7 +40896,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 639, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L639" } ] } @@ -40883,7 +40915,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L727" } ], "type": { @@ -40908,7 +40940,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 729, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L729" } ], "type": { @@ -40934,7 +40966,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 730, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L730" } ], "type": { @@ -40950,7 +40982,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 730, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L730" } ], "signatures": [ @@ -40981,7 +41013,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 729, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L729" } ] } @@ -41006,7 +41038,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 728, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L728" } ], "type": { @@ -41022,7 +41054,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 728, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L728" } ], "signatures": [ @@ -41110,7 +41142,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 733, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L733" } ], "type": { @@ -41126,7 +41158,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 733, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L733" } ], "signatures": [ @@ -41222,7 +41254,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 727, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L727" } ] } @@ -41239,7 +41271,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 736, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L736" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L736" } ], "type": { @@ -41265,7 +41297,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 738, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L738" } ], "type": { @@ -41286,7 +41318,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 746, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L746" } ], "type": { @@ -41319,7 +41351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 751, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L751" } ], "type": { @@ -41340,7 +41372,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 753, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L753" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L753" } ], "type": { @@ -41421,7 +41453,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 748, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L748" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L748" } ], "type": { @@ -41441,7 +41473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 746, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L746" } ] } @@ -41468,7 +41500,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 744, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L744" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L744" } ], "type": { @@ -41505,7 +41537,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 741, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L741" } ], "type": { @@ -41527,7 +41559,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 737, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L737" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L737" } ] } @@ -41552,7 +41584,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 759, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L759" } ], "type": { @@ -41603,7 +41635,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 762, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L762" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L762" } ], "type": { @@ -41624,7 +41656,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 767, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L767" } ], "type": { @@ -41657,7 +41689,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 769, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L769" } ], "type": { @@ -41677,7 +41709,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 767, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L767" } ] } @@ -41702,7 +41734,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 765, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L765" } ], "type": { @@ -41727,7 +41759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 758, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L758" } ] } @@ -41746,7 +41778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 300, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L300" } ], "type": { @@ -41789,7 +41821,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L308" } ], "type": { @@ -41809,7 +41841,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 300, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L300" } ] } @@ -41830,7 +41862,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2720, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2720" } ], "type": { @@ -41855,7 +41887,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2721" } ], "type": { @@ -41880,7 +41912,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2722, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2722" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2722" } ], "type": { @@ -41900,7 +41932,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2721, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2721" } ] } @@ -41918,7 +41950,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2720, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2720" } ] } @@ -41943,7 +41975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 225, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L225" } ], "typeParameters": [ @@ -42010,7 +42042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1802, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1802" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1802" } ], "type": { @@ -42102,7 +42134,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1812, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1812" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1812" } ], "type": { @@ -42122,7 +42154,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1804, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1804" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1804" } ] } @@ -42165,7 +42197,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2323, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2323" } ], "type": { @@ -42198,7 +42230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2331, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2331" } ], "type": { @@ -42230,7 +42262,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2337, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2337" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2337" } ], "type": { @@ -42274,7 +42306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2339, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2339" } ], "type": { @@ -42318,7 +42350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2351" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2351" } ], "type": { @@ -42347,7 +42379,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2327, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2327" } ], "type": { @@ -42376,7 +42408,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2329, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2329" } ], "type": { @@ -42405,7 +42437,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2347, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2347" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2347" } ], "type": { @@ -42434,7 +42466,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2343, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2343" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2343" } ], "type": { @@ -42463,7 +42495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2341" } ], "type": { @@ -42492,7 +42524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2345, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2345" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2345" } ], "type": { @@ -42521,7 +42553,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2357" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2357" } ], "type": { @@ -42550,7 +42582,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2325" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2325" } ], "type": { @@ -42579,7 +42611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2335, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2335" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2335" } ], "type": { @@ -42608,7 +42640,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2333" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2333" } ], "type": { @@ -42640,7 +42672,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2349" } ], "type": { @@ -42669,7 +42701,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2353" } ], "type": { @@ -42698,7 +42730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2355" } ], "type": { @@ -42721,7 +42753,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2323, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2323" } ] } @@ -42746,7 +42778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2090, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2090" } ], "type": { @@ -42779,7 +42811,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2092, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2092" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2092" } ], "type": { @@ -42808,7 +42840,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2094, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2094" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2094" } ], "type": { @@ -42837,7 +42869,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2100" } ], "type": { @@ -42871,7 +42903,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2096, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2096" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2096" } ], "type": { @@ -42900,7 +42932,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2098, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2098" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2098" } ], "type": { @@ -42932,7 +42964,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2102" } ], "type": { @@ -42954,7 +42986,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2090, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2090" } ] } @@ -42971,7 +43003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 311, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L311" } ], "type": { @@ -42998,7 +43030,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L312" } ], "type": { @@ -43020,7 +43052,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 311, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L311" } ] } @@ -43041,7 +43073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 814, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L814" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L814" } ], "type": { @@ -43079,7 +43111,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2726, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2726" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2726" } ], "type": { @@ -43110,7 +43142,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2728, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2728" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2728" } ], "type": { @@ -43137,7 +43169,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2730, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2730" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2730" } ], "type": { @@ -43162,7 +43194,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2726, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2726" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2726" } ] } @@ -43179,7 +43211,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2713, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2713" } ], "type": { @@ -43210,7 +43242,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2715, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2715" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2715" } ], "type": { @@ -43237,7 +43269,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2717, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2717" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2717" } ], "type": { @@ -43262,7 +43294,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2713, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2713" } ] } @@ -43279,7 +43311,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 209, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L209" } ], "type": { @@ -43302,7 +43334,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L211" } ], "type": { @@ -43321,7 +43353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L210" } ], "type": { @@ -43346,7 +43378,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 209, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L209" } ] } @@ -43363,7 +43395,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 208, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L208" } ], "type": { @@ -43398,7 +43430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 812, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L812" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L812" } ], "type": { @@ -43432,7 +43464,7 @@ "fileName": "packages/core/auth-js/src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/AuthAdminApi.ts#L3" } ], "type": { @@ -43459,7 +43491,7 @@ "fileName": "packages/core/auth-js/src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/AuthClient.ts#L3" } ], "type": { @@ -43490,7 +43522,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L6" } ], "type": { @@ -43517,7 +43549,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L10" } ], "type": { @@ -43538,7 +43570,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L6" } ] } @@ -43558,7 +43590,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1993, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1993" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1993" } ], "type": { @@ -43595,7 +43627,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L75" } ], "signatures": [ @@ -43610,7 +43642,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L75" } ], "parameters": [ @@ -43651,7 +43683,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L50" } ], "signatures": [ @@ -43666,7 +43698,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L50" } ], "parameters": [ @@ -43707,7 +43739,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L210" } ], "signatures": [ @@ -43722,7 +43754,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L210" } ], "parameters": [ @@ -43763,7 +43795,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L274" } ], "signatures": [ @@ -43778,7 +43810,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L274" } ], "parameters": [ @@ -43819,7 +43851,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L296" } ], "signatures": [ @@ -43834,7 +43866,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L296" } ], "parameters": [ @@ -43875,7 +43907,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L140" } ], "signatures": [ @@ -43890,7 +43922,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L140" } ], "parameters": [ @@ -43931,7 +43963,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 341, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L341" } ], "signatures": [ @@ -43946,7 +43978,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 341, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L341" } ], "parameters": [ @@ -43987,7 +44019,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L96" } ], "signatures": [ @@ -44063,7 +44095,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L96" } ], "typeParameters": [ @@ -44149,7 +44181,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L99" } ], "signatures": [ @@ -44164,7 +44196,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L99" } ], "type": { @@ -44223,7 +44255,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 323, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L323" } ], "signatures": [ @@ -44266,7 +44298,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 323, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L323" } ], "typeParameters": [ @@ -44352,7 +44384,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 326, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L326" } ], "signatures": [ @@ -44367,7 +44399,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 326, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L326" } ], "type": { diff --git a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json index c25cd9dba7a85..0166bd7041346 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json @@ -42,7 +42,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L67" } ], "signatures": [ @@ -57,7 +57,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L67" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L65" } ], "type": { @@ -244,7 +244,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -261,7 +261,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -403,7 +403,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -441,7 +441,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 64, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L64" } ], "extendedTypes": [ @@ -490,7 +490,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L28" } ], "signatures": [ @@ -505,7 +505,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L28" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -682,7 +682,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -697,7 +697,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -936,7 +936,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "signatures": [ @@ -951,7 +951,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L191" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L190" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -1303,7 +1303,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L196" } ], "signatures": [ @@ -1318,7 +1318,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L196" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L200" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L201" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L198" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L197" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L199" } ], "type": { @@ -1548,7 +1548,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L196" } ] } @@ -1586,7 +1586,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 189, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L189" } ], "extendedTypes": [ @@ -1635,7 +1635,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L171" } ], "signatures": [ @@ -1650,7 +1650,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L171" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -1834,7 +1834,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -1851,7 +1851,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -1993,7 +1993,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -2031,7 +2031,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 170, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L170" } ], "extendedTypes": [ @@ -2080,7 +2080,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L356" } ], "signatures": [ @@ -2095,7 +2095,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L356" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -2279,7 +2279,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -2296,7 +2296,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -2438,7 +2438,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -2476,7 +2476,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 355, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L355" } ], "extendedTypes": [ @@ -2525,7 +2525,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L155" } ], "signatures": [ @@ -2540,7 +2540,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L155" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -2711,7 +2711,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -2728,7 +2728,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -2870,7 +2870,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -2908,7 +2908,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 154, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L154" } ], "extendedTypes": [ @@ -2957,7 +2957,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L261" } ], "signatures": [ @@ -2972,7 +2972,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L261" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -3143,7 +3143,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -3160,7 +3160,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -3302,7 +3302,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -3340,7 +3340,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 260, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L260" } ], "extendedTypes": [ @@ -3389,7 +3389,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "signatures": [ @@ -3404,7 +3404,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "parameters": [ @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L229" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L227" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -3756,7 +3756,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L234" } ], "signatures": [ @@ -3771,7 +3771,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L234" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L238" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L239" } ] } @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L236" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L235" } ], "type": { @@ -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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L237" } ], "type": { @@ -4001,7 +4001,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L234" } ] } @@ -4039,7 +4039,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 226, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L226" } ], "extendedTypes": [ @@ -4088,7 +4088,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L291" } ], "signatures": [ @@ -4103,7 +4103,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L291" } ], "parameters": [ @@ -4179,7 +4179,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -4238,7 +4238,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -4272,7 +4272,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -4298,7 +4298,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -4315,7 +4315,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -4338,7 +4338,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -4390,7 +4390,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -4409,7 +4409,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -4428,7 +4428,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -4457,7 +4457,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -4495,7 +4495,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 290, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L290" } ], "extendedTypes": [ @@ -4544,7 +4544,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L135" } ], "signatures": [ @@ -4559,7 +4559,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L135" } ], "type": { @@ -4611,7 +4611,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -4670,7 +4670,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -4704,7 +4704,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -4730,7 +4730,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -4747,7 +4747,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -4770,7 +4770,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -4822,7 +4822,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -4841,7 +4841,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -4860,7 +4860,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -4889,7 +4889,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -4927,7 +4927,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 134, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L134" } ], "extendedTypes": [ @@ -4976,7 +4976,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L96" } ], "signatures": [ @@ -4991,7 +4991,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L96" } ], "parameters": [ @@ -5067,7 +5067,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -5124,7 +5124,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L94" } ], "type": { @@ -5153,7 +5153,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -5188,7 +5188,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -5205,7 +5205,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -5228,7 +5228,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -5280,7 +5280,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -5299,7 +5299,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -5318,7 +5318,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -5347,7 +5347,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -5385,7 +5385,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 93, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L93" } ], "extendedTypes": [ @@ -5434,7 +5434,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L321" } ], "signatures": [ @@ -5449,7 +5449,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L321" } ], "parameters": [ @@ -5552,7 +5552,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -5611,7 +5611,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -5643,7 +5643,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L319" } ], "type": { @@ -5688,7 +5688,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -5712,7 +5712,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 327, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L327" } ], "signatures": [ @@ -5727,7 +5727,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 327, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L327" } ], "type": { @@ -5750,7 +5750,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 331, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L331" } ], "type": { @@ -5802,7 +5802,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 329, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L329" } ], "type": { @@ -5821,7 +5821,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 328, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L328" } ], "type": { @@ -5840,7 +5840,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 332, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L332" } ], "type": { @@ -5875,7 +5875,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 330, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L330" } ], "type": { @@ -5904,7 +5904,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 327, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L327" } ] } @@ -5942,7 +5942,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 315, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L315" } ], "extendedTypes": [ @@ -5991,7 +5991,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L117" } ], "signatures": [ @@ -6006,7 +6006,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L117" } ], "parameters": [ @@ -6113,7 +6113,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -6170,7 +6170,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -6202,7 +6202,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -6228,7 +6228,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ @@ -6245,7 +6245,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { @@ -6268,7 +6268,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -6320,7 +6320,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -6339,7 +6339,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -6358,7 +6358,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -6387,7 +6387,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -6425,7 +6425,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 113, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L113" } ], "extendedTypes": [ @@ -6502,7 +6502,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "signatures": [ @@ -6547,7 +6547,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "parameters": [ @@ -6579,7 +6579,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 103, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L103" } ], "type": { @@ -6602,7 +6602,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 102, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L102" } ], "type": { @@ -6831,7 +6831,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "type": { @@ -6847,7 +6847,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 99, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "indexSignatures": [ @@ -6862,7 +6862,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" } ], "parameters": [ @@ -6899,7 +6899,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L98" } ], "type": { @@ -6920,7 +6920,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 97, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ] } @@ -6956,7 +6956,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" } ], "type": { @@ -6985,7 +6985,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -7014,7 +7014,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" } ], "type": { @@ -7051,7 +7051,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" } ], "type": { @@ -7072,7 +7072,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 481, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" } ], "signatures": [ @@ -7222,7 +7222,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 481, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L481" } ], "parameters": [ @@ -7271,7 +7271,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 831, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" } ], "signatures": [ @@ -7361,7 +7361,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 831, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L831" } ], "parameters": [ @@ -7444,7 +7444,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" } ], "signatures": [ @@ -7662,7 +7662,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L372" } ], "parameters": [ @@ -7711,7 +7711,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 622, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" } ], "signatures": [ @@ -7793,7 +7793,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 622, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L622" } ], "parameters": [ @@ -7856,7 +7856,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" } ], "signatures": [ @@ -7938,7 +7938,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L230" } ], "parameters": [ @@ -8013,7 +8013,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 234, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L234" } ], "type": { @@ -8042,7 +8042,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L237" } ], "type": { @@ -8062,7 +8062,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 232, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" } ] } @@ -8101,7 +8101,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 521, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" } ], "signatures": [ @@ -8172,7 +8172,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 521, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L521" } ], "parameters": [ @@ -8246,7 +8246,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -8272,7 +8272,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -8291,7 +8291,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -8316,7 +8316,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ] } @@ -8341,7 +8341,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ], "type": { @@ -8361,7 +8361,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 524, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L524" } ] } @@ -8386,7 +8386,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ], "type": { @@ -8409,7 +8409,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ], "type": { @@ -8428,7 +8428,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ] } @@ -8445,7 +8445,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ], "type": { @@ -8467,7 +8467,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 525, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L525" } ] } @@ -8492,7 +8492,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" } ], "signatures": [ @@ -8526,7 +8526,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L141" } ], "parameters": [ @@ -8610,7 +8610,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 144, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" } ], "type": { @@ -8629,7 +8629,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 144, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" } ], "type": { @@ -8660,7 +8660,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 144, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L144" } ] } @@ -8683,7 +8683,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 782, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" } ], "signatures": [ @@ -8883,7 +8883,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 782, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L782" } ], "parameters": [ @@ -8986,7 +8986,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 44, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" } ] }, @@ -9008,7 +9008,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L341" } ], "signatures": [ @@ -9053,7 +9053,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L341" } ], "parameters": [ @@ -9100,7 +9100,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 226, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L226" } ], "type": { @@ -9130,7 +9130,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L230" } ], "type": { @@ -9159,7 +9159,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 236, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L236" } ], "type": { @@ -9196,7 +9196,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 243, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L243" } ], "type": { @@ -9217,7 +9217,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1405" } ], "signatures": [ @@ -9299,7 +9299,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1405" } ], "parameters": [ @@ -9344,9 +9344,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5857, + "line": 5868, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5857" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5868" } ], "signatures": [ @@ -9452,9 +9452,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5857, + "line": 5868, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5857" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5868" } ], "parameters": [ @@ -9546,9 +9546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5866, + "line": 5877, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5866" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5877" } ], "type": { @@ -9575,9 +9575,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5869, + "line": 5880, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5869" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5880" } ], "type": { @@ -9598,9 +9598,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5869, + "line": 5880, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5869" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5880" } ], "type": { @@ -9623,9 +9623,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5869, + "line": 5880, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5869" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5880" } ] } @@ -9656,9 +9656,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5863, + "line": 5874, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5863" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5874" } ], "type": { @@ -9681,9 +9681,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5859, + "line": 5870, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5859" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5870" } ] } @@ -9719,9 +9719,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -9742,9 +9742,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -9763,9 +9763,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -9784,9 +9784,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ], "type": { @@ -9809,9 +9809,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5873, + "line": 5884, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5873" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5884" } ] } @@ -9826,9 +9826,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5874, + "line": 5885, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5874" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5885" } ], "type": { @@ -9846,9 +9846,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5872, + "line": 5883, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5872" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5883" } ] } @@ -9871,9 +9871,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5876, + "line": 5887, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5887" } ], "type": { @@ -9890,9 +9890,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5876, + "line": 5887, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5887" } ], "type": { @@ -9912,9 +9912,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5876, + "line": 5887, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5887" } ] } @@ -9937,9 +9937,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 5888, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5888" } ], "type": { @@ -9956,9 +9956,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 5888, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5888" } ], "type": { @@ -9976,9 +9976,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 5888, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5888" } ] } @@ -10003,7 +10003,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2661, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2661" } ], "signatures": [ @@ -10126,7 +10126,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2661, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2661" } ], "type": { @@ -10159,7 +10159,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2754, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2754" } ], "type": { @@ -10182,7 +10182,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2755, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2755" } ], "type": { @@ -10204,7 +10204,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2754, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2754" } ] } @@ -10221,7 +10221,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2757, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2757" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2757" } ], "type": { @@ -10241,7 +10241,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2753, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2753" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2753" } ] } @@ -10266,7 +10266,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2760, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2760" } ], "type": { @@ -10289,7 +10289,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2761, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2761" } ], "type": { @@ -10309,7 +10309,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2760, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2760" } ] } @@ -10326,7 +10326,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2763, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2763" } ], "type": { @@ -10348,7 +10348,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2759, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2759" } ] } @@ -10373,7 +10373,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2766, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2766" } ], "type": { @@ -10396,7 +10396,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2767, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2767" } ], "type": { @@ -10416,7 +10416,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2766, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2766" } ] } @@ -10433,7 +10433,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2769, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2769" } ], "type": { @@ -10453,7 +10453,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2765, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2765" } ] } @@ -10478,7 +10478,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2972, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2972" } ], "signatures": [ @@ -10570,7 +10570,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2972, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2972" } ], "parameters": [ @@ -10625,9 +10625,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4230, + "line": 4241, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4241" } ], "signatures": [ @@ -10699,9 +10699,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4230, + "line": 4241, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4241" } ], "type": { @@ -10732,9 +10732,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4232, + "line": 4243, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4243" } ], "type": { @@ -10755,9 +10755,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4233, + "line": 4244, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4244" } ], "type": { @@ -10780,9 +10780,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4232, + "line": 4243, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4243" } ] } @@ -10797,9 +10797,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4235, + "line": 4246, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4246" } ], "type": { @@ -10817,9 +10817,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4231, + "line": 4242, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4242" } ] } @@ -10842,9 +10842,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4237, + "line": 4248, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4248" } ], "type": { @@ -10861,9 +10861,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4237, + "line": 4248, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4248" } ], "type": { @@ -10883,9 +10883,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4237, + "line": 4248, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4248" } ] } @@ -10910,7 +10910,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 515, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L515" } ], "signatures": [ @@ -10944,7 +10944,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 515, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L515" } ], "type": { @@ -10980,7 +10980,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 477, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L477" } ], "signatures": [ @@ -11003,7 +11003,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 477, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L477" } ], "type": { @@ -11092,21 +11092,21 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4255, + "line": 4266, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4266" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4260, + "line": 4271, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4260" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4271" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4289, + "line": 4300, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4289" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4300" } ], "signatures": [ @@ -11127,9 +11127,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4255, + "line": 4266, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4266" } ], "parameters": [ @@ -11182,9 +11182,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4260, + "line": 4271, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4260" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4271" } ], "parameters": [ @@ -11521,21 +11521,21 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4026, + "line": 4037, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4026" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4037" } ], "signatures": [ @@ -11556,9 +11556,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ], "parameters": [ @@ -11587,9 +11587,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ], "signatures": [ @@ -11602,9 +11602,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ], "parameters": [ @@ -11672,9 +11672,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3820, + "line": 3831, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3831" } ], "type": { @@ -11695,9 +11695,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3820, + "line": 3831, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3831" } ], "type": { @@ -11717,9 +11717,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3820, + "line": 3831, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3831" } ] } @@ -11735,9 +11735,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3819, + "line": 3830, "character": 90, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3830" } ] } @@ -11779,9 +11779,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ], "parameters": [ @@ -11810,9 +11810,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ], "signatures": [ @@ -11825,9 +11825,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ], "parameters": [ @@ -11906,9 +11906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3836, + "line": 3847, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3847" } ], "type": { @@ -11929,9 +11929,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3836, + "line": 3847, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3847" } ], "type": { @@ -11951,9 +11951,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3836, + "line": 3847, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3847" } ] } @@ -11969,9 +11969,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3835, + "line": 3846, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3835" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3846" } ] } @@ -11990,7 +11990,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2444, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2444" } ], "signatures": [ @@ -12076,7 +12076,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2444, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2444" } ], "type": { @@ -12110,7 +12110,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ], "signatures": [ @@ -12186,7 +12186,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ], "parameters": [ @@ -12226,7 +12226,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ], "type": { @@ -12246,7 +12246,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3533, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3533" } ] } @@ -12282,9 +12282,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6028, + "line": 6039, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L6028" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L6039" } ], "signatures": [ @@ -12313,9 +12313,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6028, + "line": 6039, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L6028" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L6039" } ], "parameters": [ @@ -12366,7 +12366,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2535, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2535" } ], "signatures": [ @@ -12517,7 +12517,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2535, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2535" } ], "parameters": [ @@ -12564,9 +12564,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4146, + "line": 4157, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4157" } ], "signatures": [ @@ -12692,9 +12692,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4146, + "line": 4157, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4157" } ], "parameters": [ @@ -12751,9 +12751,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4150, + "line": 4161, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4161" } ], "type": { @@ -12780,9 +12780,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4149, + "line": 4160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4149" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4160" } ], "type": { @@ -12800,9 +12800,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4148, + "line": 4159, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4159" } ] } @@ -12838,9 +12838,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4154, + "line": 4165, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4154" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4165" } ], "type": { @@ -12863,9 +12863,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4155, + "line": 4166, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4166" } ], "type": { @@ -12883,9 +12883,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4153, + "line": 4164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4164" } ] } @@ -12908,9 +12908,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4168, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4168" } ], "type": { @@ -12927,9 +12927,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4168, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4168" } ], "type": { @@ -12949,9 +12949,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4168" } ] } @@ -12976,7 +12976,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3339, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3339" } ], "signatures": [ @@ -13075,7 +13075,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3339, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3339" } ], "parameters": [ @@ -13113,7 +13113,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3340, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3340" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3340" } ], "type": { @@ -13132,7 +13132,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3341, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3341" } ], "type": { @@ -13152,7 +13152,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3339, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3339" } ] } @@ -13190,7 +13190,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L689" } ], "signatures": [ @@ -13283,7 +13283,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L689" } ], "parameters": [ @@ -13334,7 +13334,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1977, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1977" } ], "signatures": [ @@ -13400,7 +13400,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1977, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1977" } ], "parameters": [ @@ -13449,7 +13449,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1226" } ], "signatures": [ @@ -13617,7 +13617,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1226" } ], "parameters": [ @@ -13666,7 +13666,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2090, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2090" } ], "signatures": [ @@ -13851,7 +13851,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2090, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2090" } ], "parameters": [ @@ -13898,9 +13898,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5972, + "line": 5983, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5983" } ], "signatures": [ @@ -13929,9 +13929,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5972, + "line": 5983, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L5972" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L5983" } ], "parameters": [ @@ -13982,7 +13982,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1087, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1087" } ], "signatures": [ @@ -14058,7 +14058,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1087, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1087" } ], "parameters": [ @@ -14107,7 +14107,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2381" } ], "signatures": [ @@ -14186,7 +14186,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2381" } ], "parameters": [ @@ -14235,7 +14235,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1501, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1501" } ], "signatures": [ @@ -14327,7 +14327,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1501, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1501" } ], "parameters": [ @@ -14375,7 +14375,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ], "type": { @@ -14398,7 +14398,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ], "type": { @@ -14419,7 +14419,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ], "type": { @@ -14441,7 +14441,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1503, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1503" } ] } @@ -14458,7 +14458,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1504, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1504" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1504" } ], "type": { @@ -14478,7 +14478,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1502, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1502" } ] } @@ -14503,7 +14503,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -14526,7 +14526,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -14545,7 +14545,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -14565,7 +14565,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ] } @@ -14582,7 +14582,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ], "type": { @@ -14604,7 +14604,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1506, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L1506" } ] } @@ -14627,9 +14627,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ], "signatures": [ @@ -14683,7 +14683,31 @@ }, { "kind": "text", - "text": " event is fired!" + "text": " event is fired!\n\n**Warning:** the default " + }, + { + "kind": "code", + "text": "`scope`" + }, + { + "kind": "text", + "text": " is " + }, + { + "kind": "code", + "text": "`'global'`" + }, + { + "kind": "text", + "text": ". This signs the user out of\n**every device they are currently signed in on**, not just the current\ntab/session. If you only want to sign the user out of the current session\n(the behavior most other auth libraries default to), pass\n" + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " explicitly." } ], "blockTags": [ @@ -14717,13 +14741,21 @@ }, { "kind": "text", - "text": " uses the global scope, which signs out all other sessions that the user is logged into as well. Customize this behavior by passing a scope parameter.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." + "text": " uses the **global** scope, which signs out the user\n on every device they are signed in on (not just the current one). Pass\n " + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " to only sign out the current session. This is\n usually what apps want on a \"Sign out\" button, especially when users\n sign in from multiple devices and do not expect signing out of one to\n terminate the others.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." } ] }, { "tag": "@example", - "name": "Sign out (all sessions)", + "name": "Sign out of every device (global – default)", "content": [ { "kind": "code", @@ -14733,7 +14765,7 @@ }, { "tag": "@example", - "name": "Sign out (current session)", + "name": "Sign out only the current session (recommended for most apps)", "content": [ { "kind": "code", @@ -14743,7 +14775,7 @@ }, { "tag": "@example", - "name": "Sign out (other sessions)", + "name": "Sign out of all other sessions, keep the current one", "content": [ { "kind": "code", @@ -14756,9 +14788,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ], "parameters": [ @@ -14802,9 +14834,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ], "type": { @@ -14833,9 +14865,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3772, + "line": 3783, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3772" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3783" } ] } @@ -14858,7 +14890,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 899, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L899" } ], "signatures": [ @@ -15064,7 +15096,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 899, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L899" } ], "parameters": [ @@ -15111,9 +15143,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4930, + "line": 4941, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4941" } ], "signatures": [ @@ -15187,9 +15219,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4930, + "line": 4941, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4941" } ], "type": { @@ -15219,9 +15251,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4965, + "line": 4976, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4965" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4976" } ], "signatures": [ @@ -15281,9 +15313,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4965, + "line": 4976, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4965" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4976" } ], "type": { @@ -15313,9 +15345,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4409, + "line": 4420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4420" } ], "signatures": [ @@ -15374,9 +15406,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4409, + "line": 4420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4420" } ], "parameters": [ @@ -15422,9 +15454,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4411, + "line": 4422, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4411" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4422" } ], "type": { @@ -15447,9 +15479,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4412, + "line": 4423, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4412" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4423" } ], "type": { @@ -15467,9 +15499,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4410, + "line": 4421, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4410" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4421" } ] } @@ -15492,9 +15524,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4414, + "line": 4425, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4425" } ], "type": { @@ -15511,9 +15543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4414, + "line": 4425, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4425" } ], "type": { @@ -15533,9 +15565,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4414, + "line": 4425, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L4414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L4425" } ] } @@ -15560,7 +15592,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3148, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3148" } ], "signatures": [ @@ -15742,7 +15774,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3148, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3148" } ], "parameters": [ @@ -15787,7 +15819,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3151" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3151" } ], "type": { @@ -15807,7 +15839,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3150, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L3150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L3150" } ] } @@ -15846,7 +15878,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2281" } ], "signatures": [ @@ -16020,7 +16052,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L2281" } ], "parameters": [ @@ -16094,7 +16126,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 217, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/GoTrueClient.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/GoTrueClient.ts#L217" } ] }, @@ -16135,7 +16167,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L37" } ], "signatures": [ @@ -16150,7 +16182,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L37" } ], "parameters": [ @@ -16200,7 +16232,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 35, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L35" } ], "type": { @@ -16230,7 +16262,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 52, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L52" } ], "extendedTypes": [ @@ -16289,7 +16321,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 555, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L555" } ], "type": { @@ -16318,7 +16350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 581, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L581" } ], "type": { @@ -16348,7 +16380,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L501" } ], "type": { @@ -16383,7 +16415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L506" } ], "type": { @@ -16417,7 +16449,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 562, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L562" } ], "type": { @@ -16462,7 +16494,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L606" } ], "type": { @@ -16492,7 +16524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 523, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L523" } ], "type": { @@ -16527,7 +16559,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L516" } ], "type": { @@ -16569,7 +16601,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 599, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L599" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L599" } ], "type": { @@ -16599,7 +16631,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L511" } ], "type": { @@ -16633,7 +16665,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L569" } ], "type": { @@ -16694,7 +16726,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 590, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L590" } ], "type": { @@ -16739,7 +16771,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 545, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L545" } ], "type": { @@ -16759,7 +16791,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 534, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L534" } ], "extendedTypes": [ @@ -16837,7 +16869,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L380" } ], "type": { @@ -16866,7 +16898,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L386" } ], "type": { @@ -16886,7 +16918,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 378, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L378" } ] }, @@ -16916,7 +16948,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2605" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2605" } ], "signatures": [ @@ -16959,7 +16991,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2605" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2605" } ], "parameters": [ @@ -17028,7 +17060,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2607, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2607" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2607" } ], "type": { @@ -17048,7 +17080,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2607, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2607" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2607" } ] } @@ -17086,7 +17118,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2624" } ], "signatures": [ @@ -17129,7 +17161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2624" } ], "parameters": [ @@ -17198,7 +17230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2626, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2626" } ], "type": { @@ -17218,7 +17250,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2626, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2626" } ] } @@ -17256,7 +17288,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2589, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2589" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2589" } ], "signatures": [ @@ -17319,7 +17351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2589, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2589" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2589" } ], "parameters": [ @@ -17374,7 +17406,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2637" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2637" } ], "signatures": [ @@ -17417,7 +17449,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2637" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2637" } ], "type": { @@ -17451,7 +17483,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ], "signatures": [ @@ -17494,7 +17526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ], "parameters": [ @@ -17540,7 +17572,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ], "type": { @@ -17560,7 +17592,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2652, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2652" } ] } @@ -17605,7 +17637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2565, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2565" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2565" } ] }, @@ -17643,7 +17675,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2798, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2798" } ], "signatures": [ @@ -17658,7 +17690,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2798, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2798" } ], "parameters": [ @@ -17707,7 +17739,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2796, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2796" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2796" } ], "signatures": [ @@ -17722,7 +17754,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2796, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2796" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2796" } ], "type": { @@ -17756,7 +17788,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2788, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2788" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2788" } ], "signatures": [ @@ -17771,7 +17803,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2788, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2788" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2788" } ], "parameters": [ @@ -17822,7 +17854,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2782, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2782" } ], "signatures": [ @@ -17837,7 +17869,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2782, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2782" } ], "type": { @@ -17871,7 +17903,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2797, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2797" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2797" } ], "signatures": [ @@ -17886,7 +17918,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2797, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2797" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2797" } ], "parameters": [ @@ -17935,7 +17967,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2791, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2791" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2791" } ], "signatures": [ @@ -17950,7 +17982,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2791, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2791" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2791" } ], "parameters": [ @@ -17999,7 +18031,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2783, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2783" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2783" } ], "signatures": [ @@ -18014,7 +18046,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2783, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2783" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2783" } ], "parameters": [ @@ -18064,7 +18096,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2780, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2780" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2780" } ] }, @@ -18112,7 +18144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 958, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L958" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L958" } ], "type": { @@ -18141,7 +18173,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 960, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L960" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L960" } ], "type": { @@ -18161,7 +18193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 952, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L952" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L952" } ] }, @@ -18191,7 +18223,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2408, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2408" } ], "signatures": [ @@ -18238,7 +18270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2408, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2408" } ], "parameters": [ @@ -18287,7 +18319,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "signatures": [ @@ -18318,7 +18350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "parameters": [ @@ -18361,7 +18393,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "type": { @@ -18380,7 +18412,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ], "type": { @@ -18411,7 +18443,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2437, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2437" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2437" } ] } @@ -18434,7 +18466,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2415" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2415" } ], "signatures": [ @@ -18465,7 +18497,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2415" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2415" } ], "parameters": [ @@ -18512,7 +18544,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2395, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2395" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2395" } ], "signatures": [ @@ -18543,7 +18575,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2395, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2395" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2395" } ], "parameters": [ @@ -18594,7 +18626,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2427" } ], "signatures": [ @@ -18649,7 +18681,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2427" } ], "parameters": [ @@ -18710,7 +18742,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2389, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2389" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2389" } ] }, @@ -18746,7 +18778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1790, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1790" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1790" } ], "signatures": [ @@ -18818,7 +18850,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1790, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1790" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1790" } ], "parameters": [ @@ -18867,7 +18899,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1760, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1760" } ], "signatures": [ @@ -18924,7 +18956,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1760, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1760" } ], "parameters": [ @@ -18980,7 +19012,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1729, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1729" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1729" } ] }, @@ -19010,7 +19042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2148" } ], "signatures": [ @@ -19052,7 +19084,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2148" } ], "parameters": [ @@ -19101,7 +19133,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "signatures": [ @@ -19143,7 +19175,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "parameters": [ @@ -19186,7 +19218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "type": { @@ -19205,7 +19237,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ], "type": { @@ -19236,7 +19268,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2178, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2178" } ] } @@ -19259,7 +19291,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2158" } ], "signatures": [ @@ -19301,7 +19333,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2158" } ], "parameters": [ @@ -19348,7 +19380,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2138" } ], "signatures": [ @@ -19390,7 +19422,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2138" } ], "parameters": [ @@ -19441,7 +19473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2188" } ], "signatures": [ @@ -19483,7 +19515,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2188" } ], "parameters": [ @@ -19530,7 +19562,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2168, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2168" } ], "signatures": [ @@ -19572,7 +19604,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2168, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2168" } ], "parameters": [ @@ -19639,7 +19671,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2129, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2129" } ] }, @@ -19661,7 +19693,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2803, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2803" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2803" } ], "signatures": [ @@ -19676,7 +19708,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2803, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2803" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2803" } ], "parameters": [ @@ -19725,7 +19757,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2802, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2802" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2802" } ], "signatures": [ @@ -19740,7 +19772,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2802, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2802" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2802" } ], "parameters": [ @@ -19790,7 +19822,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2801, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2801" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2801" } ] }, @@ -19820,7 +19852,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1687, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1687" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1687" } ], "type": { @@ -19844,25 +19876,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1425" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1425" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1426" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1427" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1428" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1428" } ], "signatures": [ @@ -19990,7 +20022,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1425" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1425" } ], "parameters": [ @@ -20041,7 +20073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -20060,7 +20092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -20082,7 +20114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20107,7 +20139,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -20131,7 +20163,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -20151,7 +20183,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20174,7 +20206,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1426" } ], "parameters": [ @@ -20222,7 +20254,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -20241,7 +20273,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -20263,7 +20295,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20288,7 +20320,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -20312,7 +20344,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -20332,7 +20364,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20355,7 +20387,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1427" } ], "parameters": [ @@ -20403,7 +20435,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -20422,7 +20454,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -20444,7 +20476,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20469,7 +20501,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -20513,7 +20545,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -20533,7 +20565,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ] } @@ -20556,7 +20588,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1428" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1428" } ], "parameters": [ @@ -20605,7 +20637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1617, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1617" } ], "signatures": [ @@ -20695,7 +20727,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1617, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1617" } ], "parameters": [ @@ -20747,25 +20779,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1352" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1353" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1354, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1354" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1354" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1355" } ], "signatures": [ @@ -20958,7 +20990,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1352" } ], "parameters": [ @@ -21005,7 +21037,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1353" } ], "parameters": [ @@ -21052,7 +21084,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1354, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1354" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1354" } ], "parameters": [ @@ -21102,7 +21134,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1355" } ], "parameters": [ @@ -21151,7 +21183,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1682" } ], "signatures": [ @@ -21299,7 +21331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1682" } ], "parameters": [ @@ -21356,7 +21388,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1629" } ], "signatures": [ @@ -21437,7 +21469,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1629" } ], "type": { @@ -21494,7 +21526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1536" } ], "signatures": [ @@ -21567,7 +21599,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1536" } ], "parameters": [ @@ -21616,25 +21648,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1508" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1509" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1510" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1510" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1511" } ], "signatures": [ @@ -21700,7 +21732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1508" } ], "parameters": [ @@ -21747,7 +21779,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1509" } ], "parameters": [ @@ -21794,7 +21826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1510" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1510" } ], "parameters": [ @@ -21841,7 +21873,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1511" } ], "parameters": [ @@ -21905,7 +21937,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1271, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1271" } ] }, @@ -21929,7 +21961,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1988" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1988" } ], "type": { @@ -21948,7 +21980,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1987, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1987" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1987" } ], "type": { @@ -21972,7 +22004,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1989" } ], "type": { @@ -21991,7 +22023,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1986, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1986" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1986" } ], "type": { @@ -22024,7 +22056,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1985, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1985" } ], "indexSignatures": [ @@ -22039,7 +22071,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1990, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1990" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1990" } ], "parameters": [ @@ -22101,7 +22133,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1947" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -22137,7 +22169,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1976" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1976" } ], "type": { @@ -22175,7 +22207,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1968, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1968" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1968" } ], "type": { @@ -22198,7 +22230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1943, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1943" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1943" } ], "type": { @@ -22236,7 +22268,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1961, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1961" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1961" } ], "type": { @@ -22257,7 +22289,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1944" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1944" } ], "type": { @@ -22283,7 +22315,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1945, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1945" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1945" } ], "type": { @@ -22309,7 +22341,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1963" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1963" } ], "type": { @@ -22330,7 +22362,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1941" } ], "type": { @@ -22356,7 +22388,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1966, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1966" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1966" } ], "type": { @@ -22377,7 +22409,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1967" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1967" } ], "type": { @@ -22398,7 +22430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1962, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1962" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1962" } ], "type": { @@ -22419,7 +22451,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1979, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1979" } ], "type": { @@ -22440,7 +22472,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1946" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -22466,7 +22498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1948" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -22492,7 +22524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1942" } ], "type": { @@ -22518,7 +22550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1969, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1969" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1969" } ], "type": { @@ -22543,7 +22575,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1959, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1959" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1959" } ], "indexSignatures": [ @@ -22558,7 +22590,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1982, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1982" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1982" } ], "parameters": [ @@ -22615,7 +22647,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 328, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L328" } ], "type": { @@ -22644,7 +22676,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 340, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L340" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L340" } ], "type": { @@ -22671,7 +22703,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L336" } ], "type": { @@ -22700,7 +22732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 324, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L324" } ], "type": { @@ -22738,7 +22770,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L319" } ], "type": { @@ -22774,7 +22806,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L332" } ], "type": { @@ -22793,7 +22825,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L341" } ], "type": { @@ -22820,7 +22852,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 346, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L346" } ], "type": { @@ -22842,7 +22874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 315, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L315" } ] }, @@ -22872,7 +22904,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L619" } ], "type": { @@ -22888,7 +22920,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 619, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L619" } ], "signatures": [ @@ -22903,7 +22935,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 619, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L619" } ], "parameters": [ @@ -22971,7 +23003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 615, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L615" } ], "type": { @@ -23007,7 +23039,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 623, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L623" } ], "type": { @@ -23023,7 +23055,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 623, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L623" } ], "signatures": [ @@ -23038,7 +23070,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 623, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L623" } ], "type": { @@ -23062,7 +23094,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 609, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L609" } ] }, @@ -23086,7 +23118,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 475, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L475" } ], "type": { @@ -23105,7 +23137,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L466" } ], "type": { @@ -23126,7 +23158,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L468" } ], "type": { @@ -23147,7 +23179,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L490" } ], "type": { @@ -23168,7 +23200,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L469" } ], "type": { @@ -23189,7 +23221,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L479" } ], "type": { @@ -23208,7 +23240,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L478" } ], "type": { @@ -23229,7 +23261,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L489" } ], "type": { @@ -23250,7 +23282,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L476" } ], "type": { @@ -23271,7 +23303,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 471, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L471" } ], "type": { @@ -23292,7 +23324,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 480, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L480" } ], "type": { @@ -23313,7 +23345,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L488" } ], "type": { @@ -23394,7 +23426,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L465" } ], "type": { @@ -23415,7 +23447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 485, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L485" } ], "type": { @@ -23441,7 +23473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L474" } ], "type": { @@ -23462,7 +23494,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 486, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L486" } ], "type": { @@ -23483,7 +23515,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 487, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L487" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L487" } ], "type": { @@ -23504,7 +23536,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 482, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L482" } ], "type": { @@ -23525,7 +23557,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L472" } ], "type": { @@ -23546,7 +23578,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L473" } ], "type": { @@ -23567,7 +23599,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L477" } ], "type": { @@ -23588,7 +23620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 481, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L481" } ], "type": { @@ -23609,7 +23641,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L470" } ], "type": { @@ -23630,7 +23662,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L483" } ], "type": { @@ -23651,7 +23683,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 484, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L484" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L484" } ], "type": { @@ -23670,7 +23702,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L467" } ], "type": { @@ -23695,7 +23727,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 464, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L464" } ] }, @@ -23727,7 +23759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L452" } ], "type": { @@ -23756,7 +23788,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L456" } ], "type": { @@ -23779,7 +23811,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 448, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L448" } ], "indexSignatures": [ @@ -23794,7 +23826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L457" } ], "parameters": [ @@ -23845,7 +23877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L501" } ], "type": { @@ -23890,7 +23922,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L531" } ], "type": { @@ -23919,7 +23951,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L506" } ], "type": { @@ -23948,7 +23980,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 523, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L523" } ], "type": { @@ -23977,7 +24009,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L516" } ], "type": { @@ -24006,7 +24038,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L511" } ], "type": { @@ -24026,7 +24058,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 493, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L493" } ] }, @@ -24050,7 +24082,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L397" } ], "type": { @@ -24069,7 +24101,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 390, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L390" } ], "type": { @@ -24090,7 +24122,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 392, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L392" } ], "type": { @@ -24106,7 +24138,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 392, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L392" } ], "indexSignatures": [ @@ -24121,7 +24153,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 393, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L393" } ], "parameters": [ @@ -24157,7 +24189,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 395, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L395" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L395" } ], "type": { @@ -24178,7 +24210,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 398, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L398" } ], "type": { @@ -24197,7 +24229,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L396" } ], "type": { @@ -24218,7 +24250,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 399, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L399" } ], "type": { @@ -24237,7 +24269,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 391, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L391" } ], "type": { @@ -24257,7 +24289,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 389, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L389" } ] }, @@ -24272,7 +24304,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 460, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L460" } ], "indexSignatures": [ @@ -24287,7 +24319,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L461" } ], "parameters": [ @@ -24336,7 +24368,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 836, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L836" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L836" } ], "type": { @@ -24357,7 +24389,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L841" } ], "type": { @@ -24396,7 +24428,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 849, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L849" } ], "type": { @@ -24425,7 +24457,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 843, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L843" } ], "type": { @@ -24445,7 +24477,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 841, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L841" } ] } @@ -24470,7 +24502,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 838, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L838" } ], "type": { @@ -24497,7 +24529,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 840, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L840" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L840" } ], "type": { @@ -24519,7 +24551,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 834, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L834" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L834" } ] }, @@ -24543,7 +24575,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L822" } ], "type": { @@ -24582,7 +24614,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 831, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L831" } ], "type": { @@ -24611,7 +24643,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 824, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L824" } ], "type": { @@ -24631,7 +24663,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 822, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L822" } ] } @@ -24656,7 +24688,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L817" } ], "type": { @@ -24683,7 +24715,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 819, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L819" } ], "type": { @@ -24710,7 +24742,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L821" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L821" } ], "type": { @@ -24732,7 +24764,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 815, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L815" } ] }, @@ -24762,7 +24794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 855, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L855" } ], "type": { @@ -24789,7 +24821,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 858, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L858" } ], "type": { @@ -24811,7 +24843,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 853, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L853" } ] }, @@ -24826,7 +24858,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 364, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L364" } ], "type": { @@ -24872,7 +24904,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 364, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L364" } ] } @@ -24893,7 +24925,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L54" } ], "type": { @@ -24943,7 +24975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 52, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L52" } ], "type": { @@ -24962,7 +24994,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1241, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1241" } ], "type": { @@ -24990,7 +25022,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 696, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L696" } ], "type": { @@ -25027,7 +25059,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1700, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1700" } ], "type": { @@ -25058,7 +25090,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1702, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1702" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1702" } ], "type": { @@ -25085,7 +25117,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1705" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1705" } ], "type": { @@ -25105,7 +25137,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1700, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1700" } ] } @@ -25131,7 +25163,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1693, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1693" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1693" } ], "type": { @@ -25166,7 +25198,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1695, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1695" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1695" } ], "type": { @@ -25186,7 +25218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1693, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1693" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1693" } ] } @@ -25216,7 +25248,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1719" } ], "type": { @@ -25247,7 +25279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1721" } ], "type": { @@ -25267,7 +25299,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1719" } ] } @@ -25293,7 +25325,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1711, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1711" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1711" } ], "type": { @@ -25328,7 +25360,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1713, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1713" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1713" } ], "type": { @@ -25353,7 +25385,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1711, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1711" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1711" } ] } @@ -25374,7 +25406,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1172, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1172" } ], "type": { @@ -25426,7 +25458,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1223, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1223" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1223" } ], "type": { @@ -25464,7 +25496,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1164, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1164" } ], "type": { @@ -25537,7 +25569,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1193, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1193" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1193" } ], "type": { @@ -25597,7 +25629,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1213" } ], "type": { @@ -25649,7 +25681,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1220, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1220" } ], "type": { @@ -25678,7 +25710,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1917, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1917" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1917" } ], "type": { @@ -25730,7 +25762,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1139, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1139" } ], "type": { @@ -25768,7 +25800,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1908, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1908" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1908" } ], "type": { @@ -25841,7 +25873,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1930, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1930" } ], "type": { @@ -25893,7 +25925,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1243, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1243" } ], "type": { @@ -25928,7 +25960,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1264" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1264" } ], "type": { @@ -25972,7 +26004,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1245" } ], "type": { @@ -26023,7 +26055,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1253" } ], "type": { @@ -26054,7 +26086,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1243, "character": 74, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1243" } ] } @@ -26083,7 +26115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1229, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1229" } ], "typeParameters": [ @@ -26156,7 +26188,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1233" } ], "type": { @@ -26181,7 +26213,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1231, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1231" } ] } @@ -26247,7 +26279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1144" } ], "type": { @@ -26282,7 +26314,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1146" } ], "type": { @@ -26302,7 +26334,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1144, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1144" } ] } @@ -26331,7 +26363,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1137, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1137" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1137" } ], "type": { @@ -26368,7 +26400,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1116, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1116" } ], "type": { @@ -26399,7 +26431,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1118, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1118" } ], "type": { @@ -26426,7 +26458,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1124, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1124" } ], "type": { @@ -26453,7 +26485,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1127" } ], "type": { @@ -26488,7 +26520,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1121" } ], "type": { @@ -26515,7 +26547,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1130" } ], "type": { @@ -26537,7 +26569,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1116, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1116" } ] } @@ -26573,7 +26605,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2524, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2524" } ], "type": { @@ -26621,7 +26653,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2532, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2532" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2532" } ], "type": { @@ -26658,7 +26690,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2551, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2551" } ], "type": { @@ -26698,7 +26730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2557, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2557" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2557" } ], "type": { @@ -26718,7 +26750,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2557, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2557" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2557" } ] } @@ -26752,7 +26784,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 267, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L267" } ], "type": { @@ -26781,7 +26813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L270" } ], "type": { @@ -26809,7 +26841,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L269" } ], "type": { @@ -26828,7 +26860,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 268, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L268" } ], "type": { @@ -26848,7 +26880,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 267, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L267" } ] } @@ -26869,7 +26901,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2769, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2769" } ], "type": { @@ -26892,7 +26924,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2771, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2771" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2771" } ], "type": { @@ -26911,7 +26943,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2770, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2770" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2770" } ], "type": { @@ -26931,7 +26963,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2769, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2769" } ] } @@ -26948,7 +26980,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2765, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2765" } ], "type": { @@ -26971,7 +27003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2766, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2766" } ], "type": { @@ -26991,7 +27023,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2765, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2765" } ] } @@ -27008,7 +27040,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2753, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2753" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2753" } ], "type": { @@ -27037,7 +27069,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2755, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2755" } ], "type": { @@ -27064,7 +27096,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2756, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2756" } ], "type": { @@ -27094,7 +27126,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2756, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2756" } ], "type": { @@ -27125,7 +27157,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2756, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2756" } ] } @@ -27166,7 +27198,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2761, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2761" } ], "type": { @@ -27193,7 +27225,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2759, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2759" } ], "type": { @@ -27225,7 +27257,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2747, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2747" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2747" } ], "type": { @@ -27254,7 +27286,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2749, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2749" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2749" } ], "type": { @@ -27303,7 +27335,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2760, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2760" } ], "type": { @@ -27332,7 +27364,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 251, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L251" } ], "type": { @@ -27359,7 +27391,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L253" } ], "type": { @@ -27389,7 +27421,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L252" } ], "type": { @@ -27420,7 +27452,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 251, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L251" } ] } @@ -27441,7 +27473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 256, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L256" } ], "type": { @@ -27468,7 +27500,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L258" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L258" } ], "type": { @@ -27498,7 +27530,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L257" } ], "type": { @@ -27530,7 +27562,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L259" } ], "type": { @@ -27561,7 +27593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 256, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L256" } ] } @@ -27582,7 +27614,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 273, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L273" } ], "type": { @@ -27609,7 +27641,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L275" } ], "type": { @@ -27630,7 +27662,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L274" } ], "type": { @@ -27652,7 +27684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 273, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L273" } ] } @@ -27673,7 +27705,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 278, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L278" } ], "type": { @@ -27700,7 +27732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L280" } ], "type": { @@ -27721,7 +27753,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L279" } ], "type": { @@ -27744,7 +27776,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 281, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L281" } ], "type": { @@ -27766,7 +27798,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 278, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L278" } ] } @@ -27787,7 +27819,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1817, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1817" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1817" } ], "type": { @@ -27824,7 +27856,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2277, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2277" } ], "type": { @@ -27857,7 +27889,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2289" } ], "type": { @@ -27889,7 +27921,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2295" } ], "type": { @@ -27933,7 +27965,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2297" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2297" } ], "type": { @@ -27977,7 +28009,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2309" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2309" } ], "type": { @@ -28004,7 +28036,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2285, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2285" } ], "type": { @@ -28031,7 +28063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2287, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2287" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2287" } ], "type": { @@ -28060,7 +28092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2305, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2305" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2305" } ], "type": { @@ -28089,7 +28121,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2301" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2301" } ], "type": { @@ -28118,7 +28150,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2299, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2299" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2299" } ], "type": { @@ -28153,7 +28185,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2281, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2281" } ], "type": { @@ -28182,7 +28214,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2303, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2303" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2303" } ], "type": { @@ -28211,7 +28243,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2315, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2315" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2315" } ], "type": { @@ -28238,7 +28270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2283, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2283" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2283" } ], "type": { @@ -28267,7 +28299,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2293, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2293" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2293" } ], "type": { @@ -28294,7 +28326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2279" } ], "type": { @@ -28325,7 +28357,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2291" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2291" } ], "type": { @@ -28357,7 +28389,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2307, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2307" } ], "type": { @@ -28386,7 +28418,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2311, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2311" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2311" } ], "type": { @@ -28415,7 +28447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2313, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2313" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2313" } ], "type": { @@ -28438,7 +28470,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2277, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2277" } ] } @@ -28463,7 +28495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2068, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2068" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2068" } ], "type": { @@ -28494,7 +28526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2070, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2070" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2070" } ], "type": { @@ -28523,7 +28555,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2072, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2072" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2072" } ], "type": { @@ -28552,7 +28584,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2076, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2076" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2076" } ], "type": { @@ -28584,7 +28616,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2074, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2074" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2074" } ], "type": { @@ -28616,7 +28648,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2078, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2078" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2078" } ], "type": { @@ -28650,7 +28682,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2080, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2080" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2080" } ], "type": { @@ -28679,7 +28711,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2082, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2082" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2082" } ], "type": { @@ -28701,7 +28733,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2068, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2068" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2068" } ] } @@ -28726,7 +28758,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2227, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2227" } ], "type": { @@ -28759,7 +28791,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2239" } ], "type": { @@ -28791,7 +28823,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2245" } ], "type": { @@ -28835,7 +28867,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2247" } ], "type": { @@ -28879,7 +28911,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2259" } ], "type": { @@ -28906,7 +28938,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2237, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2237" } ], "type": { @@ -28933,7 +28965,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2269" } ], "type": { @@ -28962,7 +28994,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2267" } ], "type": { @@ -29002,7 +29034,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2255" } ], "type": { @@ -29031,7 +29063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2251" } ], "type": { @@ -29060,7 +29092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2249" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2249" } ], "type": { @@ -29087,7 +29119,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2229" } ], "type": { @@ -29122,7 +29154,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2233" } ], "type": { @@ -29151,7 +29183,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2253" } ], "type": { @@ -29180,7 +29212,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2265, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2265" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2265" } ], "type": { @@ -29207,7 +29239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2235" } ], "type": { @@ -29236,7 +29268,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2243, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2243" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2243" } ], "type": { @@ -29263,7 +29295,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2231, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2231" } ], "type": { @@ -29294,7 +29326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2241" } ], "type": { @@ -29326,7 +29358,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2257" } ], "type": { @@ -29355,7 +29387,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2261" } ], "type": { @@ -29382,7 +29414,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2271, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2271" } ], "type": { @@ -29411,7 +29443,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2263" } ], "type": { @@ -29434,7 +29466,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2227, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2227" } ] } @@ -29459,7 +29491,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2376, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2376" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2376" } ], "type": { @@ -29485,7 +29517,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2378, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2378" } ], "type": { @@ -29508,7 +29540,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2378, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2378" } ], "type": { @@ -29533,7 +29565,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2378, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2378" } ] } @@ -29550,7 +29582,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2379" } ], "type": { @@ -29570,7 +29602,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2377, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2377" } ] } @@ -29595,7 +29627,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2382, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2382" } ], "type": { @@ -29618,7 +29650,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2382, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2382" } ], "type": { @@ -29637,7 +29669,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2382, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2382" } ] } @@ -29654,7 +29686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2383, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2383" } ], "type": { @@ -29676,7 +29708,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2381, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2381" } ] } @@ -29703,7 +29735,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2371, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2371" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2371" } ], "type": { @@ -29740,7 +29772,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2194, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2194" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2194" } ], "type": { @@ -29768,7 +29800,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 862, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L862" } ], "type": { @@ -29812,7 +29844,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 773, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L773" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L773" } ], "type": { @@ -29836,7 +29868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 775, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L775" } ], "type": { @@ -29862,7 +29894,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 777, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L777" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L777" } ], "type": { @@ -29883,7 +29915,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 785, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L785" } ], "type": { @@ -29916,7 +29948,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 790, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L790" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L790" } ], "type": { @@ -29937,7 +29969,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 792, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L792" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L792" } ], "type": { @@ -30014,7 +30046,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 787, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L787" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L787" } ], "type": { @@ -30034,7 +30066,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 785, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L785" } ] } @@ -30061,7 +30093,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 783, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L783" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L783" } ], "type": { @@ -30098,7 +30130,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 780, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L780" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L780" } ], "type": { @@ -30120,7 +30152,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 776, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L776" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L776" } ] } @@ -30145,7 +30177,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 798, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L798" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L798" } ], "type": { @@ -30196,7 +30228,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 801, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L801" } ], "type": { @@ -30217,7 +30249,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 806, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L806" } ], "type": { @@ -30250,7 +30282,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 808, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L808" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L808" } ], "type": { @@ -30270,7 +30302,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 806, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L806" } ] } @@ -30295,7 +30327,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 804, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L804" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L804" } ], "type": { @@ -30320,7 +30352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 797, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L797" } ] } @@ -30339,7 +30371,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 193, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L193" } ], "type": { @@ -30412,7 +30444,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L203" } ], "type": { @@ -30432,7 +30464,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 193, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L193" } ] } @@ -30505,7 +30537,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 423, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L423" } ], "typeParameters": [ @@ -30585,7 +30617,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 443, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L443" } ], "type": { @@ -30628,7 +30660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L436" } ], "type": { @@ -30660,7 +30692,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 431, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L431" } ], "type": { @@ -30687,7 +30719,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L428" } ], "type": { @@ -30708,7 +30740,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L445" } ], "type": { @@ -30763,7 +30795,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L441" } ], "type": { @@ -30785,7 +30817,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L444" } ], "type": { @@ -30805,7 +30837,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 426, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L426" } ] } @@ -30846,7 +30878,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 407, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L407" } ], "type": { @@ -30881,7 +30913,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 941, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L941" } ], "type": { @@ -30912,7 +30944,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L944" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L944" } ], "type": { @@ -30939,7 +30971,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L948" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L948" } ], "type": { @@ -30960,7 +30992,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 949, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L949" } ], "type": { @@ -30996,7 +31028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L942" } ], "type": { @@ -31025,7 +31057,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 941, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L941" } ] } @@ -31042,7 +31074,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 927, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L927" } ], "type": { @@ -31073,7 +31105,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L930" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L930" } ], "type": { @@ -31094,7 +31126,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 931, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L931" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L931" } ], "type": { @@ -31139,7 +31171,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L928" } ], "type": { @@ -31168,7 +31200,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 927, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L927" } ] } @@ -31185,7 +31217,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -31237,7 +31269,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 975, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L975" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L975" } ], "type": { @@ -31268,7 +31300,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 980, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L980" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L980" } ], "type": { @@ -31295,7 +31327,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L985" } ], "type": { @@ -31322,7 +31354,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L989" } ], "type": { @@ -31349,7 +31381,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 991, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L991" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L991" } ], "type": { @@ -31376,7 +31408,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L993" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L993" } ], "type": { @@ -31398,7 +31430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 975, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L975" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L975" } ] } @@ -31415,7 +31447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 969, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L969" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L969" } ], "type": { @@ -31442,7 +31474,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L970" } ], "type": { @@ -31463,7 +31495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L971" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L971" } ], "type": { @@ -31485,7 +31517,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 969, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L969" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L969" } ] } @@ -31506,7 +31538,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 996, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L996" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L996" } ], "type": { @@ -31550,7 +31582,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 934, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L934" } ], "type": { @@ -31581,7 +31613,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L937" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L937" } ], "type": { @@ -31602,7 +31634,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 938, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L938" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L938" } ], "type": { @@ -31638,7 +31670,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L935" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L935" } ], "type": { @@ -31658,7 +31690,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 934, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L934" } ] } @@ -31675,7 +31707,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 920, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L920" } ], "type": { @@ -31698,7 +31730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 922, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L922" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L922" } ], "type": { @@ -31719,7 +31751,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 924, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L924" } ], "type": { @@ -31764,7 +31796,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L923" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L923" } ], "type": { @@ -31783,7 +31815,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 921, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L921" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L921" } ], "type": { @@ -31803,7 +31835,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 920, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L920" } ] } @@ -31820,7 +31852,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L80" } ], "type": { @@ -31845,7 +31877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L109" } ], "type": { @@ -31866,7 +31898,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L127" } ], "type": { @@ -31889,7 +31921,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L127" } ], "signatures": [ @@ -31971,7 +32003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "type": { @@ -31994,7 +32026,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "signatures": [ @@ -32040,7 +32072,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "indexSignatures": [ @@ -32055,7 +32087,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L107" } ], "parameters": [ @@ -32114,7 +32146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L190" } ], "type": { @@ -32137,7 +32169,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L123" } ], "type": { @@ -32163,7 +32195,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L125" } ], "type": { @@ -32195,7 +32227,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L141" } ], "type": { @@ -32216,7 +32248,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L84" } ], "type": { @@ -32232,7 +32264,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L84" } ], "indexSignatures": [ @@ -32247,7 +32279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L84" } ], "parameters": [ @@ -32310,7 +32342,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L136" } ], "type": { @@ -32377,7 +32409,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 173, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L173" } ], "type": { @@ -32398,7 +32430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L111" } ], "type": { @@ -32438,7 +32470,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L182" } ], "type": { @@ -32459,7 +32491,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L113" } ], "type": { @@ -32482,7 +32514,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L86" } ], "type": { @@ -32511,7 +32543,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L146" } ], "type": { @@ -32532,7 +32564,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L82" } ], "type": { @@ -32602,7 +32634,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L121" } ], "type": { @@ -32626,7 +32658,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L80" } ] } @@ -32643,7 +32675,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1815, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1815" } ], "type": { @@ -32666,7 +32698,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1815, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1815" } ], "type": { @@ -32697,7 +32729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1815, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1815" } ] } @@ -32714,7 +32746,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1934, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1934" } ], "type": { @@ -32737,7 +32769,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1935, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1935" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1935" } ], "type": { @@ -32769,7 +32801,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1936, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1936" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1936" } ], "type": { @@ -32788,7 +32820,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1937, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1937" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1937" } ], "type": { @@ -32808,7 +32840,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1934, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1934" } ] } @@ -32833,7 +32865,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2363, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2363" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2363" } ], "type": { @@ -32866,7 +32898,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2365, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2365" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2365" } ], "type": { @@ -32888,7 +32920,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2363, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2363" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2363" } ] } @@ -32922,7 +32954,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L78" } ], "type": { @@ -32938,7 +32970,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -33031,7 +33063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -33099,7 +33131,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1110, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1110" } ], "type": { @@ -33123,7 +33155,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1098, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1098" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1098" } ], "type": { @@ -33161,7 +33193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1079, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1079" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1079" } ], "type": { @@ -33199,7 +33231,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1072, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1072" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1072" } ], "type": { @@ -33244,7 +33276,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1096, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1096" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1096" } ], "type": { @@ -33282,7 +33314,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1004, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1004" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1004" } ], "type": { @@ -33320,7 +33352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1865, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1865" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1865" } ], "type": { @@ -33364,7 +33396,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1859, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1859" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1859" } ], "type": { @@ -33429,7 +33461,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1876, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1876" } ], "type": { @@ -33473,7 +33505,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1070, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1070" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1070" } ], "type": { @@ -33508,7 +33540,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1006, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1006" } ], "type": { @@ -33539,7 +33571,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1008, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1008" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1008" } ], "type": { @@ -33559,7 +33591,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1006, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1006" } ] } @@ -33576,7 +33608,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1062, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1062" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1062" } ], "type": { @@ -33614,7 +33646,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1027, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1027" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1027" } ], "type": { @@ -33652,7 +33684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1023, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1023" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1023" } ], "type": { @@ -33698,7 +33730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1049, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1049" } ], "typeParameters": [ @@ -33764,7 +33796,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1050, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1050" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1050" } ], "type": { @@ -33812,7 +33844,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1049, "character": 98, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1049" } ] } @@ -33850,7 +33882,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1059" } ], "typeParameters": [ @@ -33937,7 +33969,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 861, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L861" } ], "type": { @@ -33973,7 +34005,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2444, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2444" } ], "type": { @@ -34004,7 +34036,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2446, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2446" } ], "type": { @@ -34031,7 +34063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2452" } ], "type": { @@ -34058,7 +34090,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2448" } ], "type": { @@ -34085,7 +34117,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2450" } ], "type": { @@ -34105,7 +34137,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2444, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2444" } ] } @@ -34146,7 +34178,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2466, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2466" } ], "type": { @@ -34177,7 +34209,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2468" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2468" } ], "type": { @@ -34204,7 +34236,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2472" } ], "type": { @@ -34233,7 +34265,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2470" } ], "type": { @@ -34260,7 +34292,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2481, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2481" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2481" } ], "type": { @@ -34287,7 +34319,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2474" } ], "type": { @@ -34318,7 +34350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2478, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2478" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2478" } ], "type": { @@ -34345,7 +34377,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2476, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2476" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2476" } ], "type": { @@ -34365,7 +34397,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2474, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2474" } ] } @@ -34383,7 +34415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2466, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2466" } ] } @@ -34408,7 +34440,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2033, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2033" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2033" } ], "type": { @@ -34439,7 +34471,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2035, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2035" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2035" } ], "type": { @@ -34466,7 +34498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2037, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2037" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2037" } ], "type": { @@ -34495,7 +34527,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2039, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2039" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2039" } ], "type": { @@ -34522,7 +34554,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2041, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2041" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2041" } ], "type": { @@ -34553,7 +34585,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2047, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2047" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2047" } ], "type": { @@ -34580,7 +34612,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2059" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2059" } ], "type": { @@ -34607,7 +34639,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2053" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2053" } ], "type": { @@ -34641,7 +34673,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2049, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2049" } ], "type": { @@ -34668,7 +34700,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2051, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2051" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2051" } ], "type": { @@ -34698,7 +34730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2045, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2045" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2045" } ], "type": { @@ -34727,7 +34759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2055, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2055" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2055" } ], "type": { @@ -34761,7 +34793,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2057, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2057" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2057" } ], "type": { @@ -34788,7 +34820,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2043, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2043" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2043" } ], "type": { @@ -34817,7 +34849,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2061, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2061" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2061" } ], "type": { @@ -34839,7 +34871,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2033, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2033" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2033" } ] } @@ -34864,7 +34896,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2000, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2000" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2000" } ], "type": { @@ -34900,7 +34932,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2115, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2115" } ], "type": { @@ -34926,7 +34958,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ], "type": { @@ -34952,7 +34984,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ], "type": { @@ -34971,7 +35003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ], "type": { @@ -34996,7 +35028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2117" } ] } @@ -35021,7 +35053,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2118, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2118" } ], "type": { @@ -35041,7 +35073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2116" } ] } @@ -35066,7 +35098,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2121, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2121" } ], "type": { @@ -35089,7 +35121,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2121, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2121" } ], "type": { @@ -35108,7 +35140,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2121, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2121" } ] } @@ -35125,7 +35157,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -35147,7 +35179,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2120" } ] } @@ -35174,7 +35206,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2018, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2018" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2018" } ], "type": { @@ -35210,7 +35242,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2109" } ], "type": { @@ -35247,7 +35279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2006, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2006" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2006" } ], "type": { @@ -35274,7 +35306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2024, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2024" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2024" } ], "type": { @@ -35314,7 +35346,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2012, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2012" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2012" } ], "type": { @@ -35350,7 +35382,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2538, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2538" } ], "type": { @@ -35381,7 +35413,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2540, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2540" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2540" } ], "type": { @@ -35410,7 +35442,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2544, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2544" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2544" } ], "type": { @@ -35437,7 +35469,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2542" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2542" } ], "type": { @@ -35460,7 +35492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2538, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2538" } ] } @@ -35493,7 +35525,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2497, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2497" } ], "type": { @@ -35524,7 +35556,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2499, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2499" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2499" } ], "type": { @@ -35544,7 +35576,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2497, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2497" } ] } @@ -35561,7 +35593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 284, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L284" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L284" } ], "type": { @@ -35587,7 +35619,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L286" } ], "type": { @@ -35610,7 +35642,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 287, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L287" } ], "type": { @@ -35631,7 +35663,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 288, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L288" } ], "type": { @@ -35651,7 +35683,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 286, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L286" } ] } @@ -35668,7 +35700,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 290, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L290" } ], "type": { @@ -35688,7 +35720,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 285, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L285" } ] } @@ -35713,7 +35745,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 293, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L293" } ], "type": { @@ -35736,7 +35768,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 294, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L294" } ], "type": { @@ -35757,7 +35789,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 295, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L295" } ], "type": { @@ -35777,7 +35809,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 293, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L293" } ] } @@ -35794,7 +35826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 297, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L297" } ], "type": { @@ -35816,7 +35848,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 292, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L292" } ] } @@ -35843,7 +35875,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2201, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2201" } ], "type": { @@ -35874,7 +35906,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2205, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2205" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2205" } ], "type": { @@ -35901,7 +35933,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2203" } ], "type": { @@ -35928,7 +35960,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2209, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2209" } ], "type": { @@ -35957,7 +35989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2213" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2213" } ], "type": { @@ -35986,7 +36018,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2221, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2221" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2221" } ], "type": { @@ -36018,7 +36050,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2217" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2217" } ], "type": { @@ -36050,7 +36082,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2215" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2215" } ], "type": { @@ -36082,7 +36114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2219, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2219" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2219" } ], "type": { @@ -36112,7 +36144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2207, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2207" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2207" } ], "type": { @@ -36141,7 +36173,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2211" } ], "type": { @@ -36161,7 +36193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2201, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2201" } ] } @@ -36178,7 +36210,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1826, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1826" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1826" } ], "type": { @@ -36211,7 +36243,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1828, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1828" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1828" } ], "type": { @@ -36240,7 +36272,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1830" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1830" } ], "type": { @@ -36260,7 +36292,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1826, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1826" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1826" } ] } @@ -36277,7 +36309,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1819, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1819" } ], "type": { @@ -36300,7 +36332,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1822" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1822" } ], "type": { @@ -36319,7 +36351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1821, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1821" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1821" } ], "type": { @@ -36347,7 +36379,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1823, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1823" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1823" } ], "type": { @@ -36367,7 +36399,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1819, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1819" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1819" } ], "indexSignatures": [ @@ -36382,7 +36414,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1820, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1820" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1820" } ], "parameters": [ @@ -36426,7 +36458,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2678, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2678" } ], "type": { @@ -36449,7 +36481,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2679, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2679" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2679" } ], "type": { @@ -36468,7 +36500,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2681, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2681" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2681" } ], "type": { @@ -36487,7 +36519,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2680, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2680" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2680" } ], "type": { @@ -36512,7 +36544,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2678, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2678" } ] } @@ -36537,7 +36569,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2685, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2685" } ], "type": { @@ -36560,7 +36592,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2686, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2686" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2686" } ], "type": { @@ -36579,7 +36611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2687, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2687" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2687" } ], "type": { @@ -36604,7 +36636,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2685, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2685" } ] } @@ -36621,7 +36653,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2740, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2740" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2740" } ], "type": { @@ -36652,7 +36684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2742" } ], "type": { @@ -36672,7 +36704,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2740, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2740" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2740" } ] } @@ -36697,7 +36729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2691, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2691" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2691" } ], "type": { @@ -36720,7 +36752,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2694, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2694" } ], "type": { @@ -36741,7 +36773,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2693, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2693" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2693" } ], "type": { @@ -36760,7 +36792,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2692" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2692" } ], "type": { @@ -36781,7 +36813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2695, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2695" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2695" } ], "type": { @@ -36801,7 +36833,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2691, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2691" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2691" } ] } @@ -36826,7 +36858,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2671, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2671" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2671" } ], "type": { @@ -36849,7 +36881,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2674, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2674" } ], "type": { @@ -36870,7 +36902,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2673, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2673" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2673" } ], "type": { @@ -36889,7 +36921,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2672" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2672" } ], "type": { @@ -36909,7 +36941,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2671, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2671" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2671" } ] } @@ -36934,7 +36966,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2658, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2658" } ], "type": { @@ -36957,7 +36989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2659, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2659" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2659" } ], "type": { @@ -36976,7 +37008,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2661, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2661" } ], "type": { @@ -36995,7 +37027,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2660, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2660" } ], "type": { @@ -37020,7 +37052,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2658, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2658" } ] } @@ -37045,7 +37077,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2665, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2665" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2665" } ], "type": { @@ -37068,7 +37100,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2666, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2666" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2666" } ], "type": { @@ -37087,7 +37119,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2667" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2667" } ], "type": { @@ -37112,7 +37144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2665, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2665" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2665" } ] } @@ -37129,7 +37161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2733, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2733" } ], "type": { @@ -37160,7 +37192,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2737, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2737" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2737" } ], "type": { @@ -37187,7 +37219,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2735, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2735" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2735" } ], "type": { @@ -37207,7 +37239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2733, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2733" } ] } @@ -37232,7 +37264,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 218, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L218" } ], "typeParameters": [ @@ -37341,7 +37373,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L24" } ], "type": { @@ -37502,7 +37534,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2707, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2707" } ], "type": { @@ -37527,7 +37559,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2708" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2708" } ], "type": { @@ -37552,7 +37584,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2709, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2709" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2709" } ], "type": { @@ -37577,7 +37609,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2708, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2708" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2708" } ] } @@ -37595,7 +37627,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2707, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2707" } ] } @@ -37620,7 +37652,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 230, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L230" } ], "typeParameters": [ @@ -37677,7 +37709,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 232, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L232" } ], "type": { @@ -37699,7 +37731,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L233" } ], "type": { @@ -37719,7 +37751,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 231, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L231" } ] } @@ -37744,7 +37776,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -37763,7 +37795,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { @@ -37810,7 +37842,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L235" } ] } @@ -37842,7 +37874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 244, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L244" } ], "typeParameters": [ @@ -37877,7 +37909,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 245, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L245" } ], "type": { @@ -37899,7 +37931,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 245, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L245" } ], "type": { @@ -37919,7 +37951,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 245, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L245" } ] } @@ -37944,7 +37976,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 247, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L247" } ], "type": { @@ -37996,7 +38028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 248, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L248" } ], "type": { @@ -38018,7 +38050,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 246, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L246" } ] } @@ -38037,7 +38069,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1940, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1940" } ], "type": { @@ -38060,7 +38092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1947" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -38081,7 +38113,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1943, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1943" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1943" } ], "type": { @@ -38112,7 +38144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1944" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1944" } ], "type": { @@ -38131,7 +38163,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1945, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1945" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1945" } ], "type": { @@ -38150,7 +38182,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1941" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1941" } ], "type": { @@ -38169,7 +38201,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1946" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -38188,7 +38220,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1948" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -38207,7 +38239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1942" } ], "type": { @@ -38227,7 +38259,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1940, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1940" } ] } @@ -38251,7 +38283,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 864, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L864" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L864" } ], "type": { @@ -38277,7 +38309,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 867, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L867" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L867" } ], "type": { @@ -38298,7 +38330,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 868, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L868" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L868" } ], "type": { @@ -38331,7 +38363,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 872, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L872" } ], "type": { @@ -38360,7 +38392,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 870, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L870" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L870" } ], "type": { @@ -38380,7 +38412,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 868, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L868" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L868" } ] } @@ -38397,7 +38429,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 866, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L866" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L866" } ], "type": { @@ -38443,7 +38475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 865, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L865" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L865" } ] } @@ -38470,7 +38502,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 878, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L878" } ], "type": { @@ -38503,7 +38535,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 880, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L880" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L880" } ], "type": { @@ -38523,7 +38555,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 878, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L878" } ] } @@ -38540,7 +38572,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 877, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L877" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L877" } ], "type": { @@ -38559,7 +38591,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 876, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L876" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L876" } ], "type": { @@ -38605,7 +38637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 875, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L875" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L875" } ] } @@ -38624,7 +38656,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L626" } ], "type": { @@ -38649,7 +38681,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L627" } ], "type": { @@ -38682,7 +38714,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 635, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L635" } ], "type": { @@ -38727,7 +38759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 633, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L633" } ], "type": { @@ -38747,7 +38779,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L627" } ] } @@ -38765,7 +38797,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L626" } ] } @@ -38782,7 +38814,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 712, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L712" } ], "type": { @@ -38823,7 +38855,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L718" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L718" } ], "type": { @@ -38860,7 +38892,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 720, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L720" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L720" } ], "type": { @@ -38881,7 +38913,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L721" } ], "type": { @@ -38914,7 +38946,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 723, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L723" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L723" } ], "type": { @@ -38934,7 +38966,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 721, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L721" } ] } @@ -39023,7 +39055,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 714, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L714" } ], "type": { @@ -39082,7 +39114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 714, "character": 97, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L714" } ] } @@ -39143,7 +39175,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 716, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L716" } ], "type": { @@ -39163,7 +39195,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 712, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L712" } ] } @@ -39180,7 +39212,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 697, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L697" } ], "type": { @@ -39205,7 +39237,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 700, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L700" } ], "type": { @@ -39238,7 +39270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 706, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L706" } ], "type": { @@ -39254,7 +39286,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 706, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L706" } ], "indexSignatures": [ @@ -39269,7 +39301,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 706, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L706" } ], "parameters": [ @@ -39315,7 +39347,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L702" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L702" } ], "type": { @@ -39344,7 +39376,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 704, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L704" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L704" } ], "type": { @@ -39373,7 +39405,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 708, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L708" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L708" } ], "type": { @@ -39393,7 +39425,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 700, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L700" } ] } @@ -39418,7 +39450,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 699, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L699" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L699" } ], "type": { @@ -39440,7 +39472,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 697, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L697" } ] } @@ -39457,7 +39489,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2700, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2700" } ], "type": { @@ -39482,7 +39514,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2701, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2701" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2701" } ], "type": { @@ -39507,7 +39539,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2702, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2702" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2702" } ], "type": { @@ -39528,7 +39560,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2703, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2703" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2703" } ], "type": { @@ -39553,7 +39585,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2701, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2701" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2701" } ] } @@ -39571,7 +39603,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2700, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2700" } ] } @@ -39588,7 +39620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 652, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L652" } ], "type": { @@ -39625,7 +39657,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L653" } ], "type": { @@ -39650,7 +39682,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 654, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L654" } ], "type": { @@ -39670,7 +39702,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 653, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L653" } ] } @@ -39688,7 +39720,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 652, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L652" } ] } @@ -39707,7 +39739,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 658, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L658" } ], "type": { @@ -39741,7 +39773,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 661, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L661" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L661" } ], "type": { @@ -39762,7 +39794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 662, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L662" } ], "type": { @@ -39795,7 +39827,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L674" } ], "type": { @@ -39840,7 +39872,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 672, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L672" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L672" } ], "type": { @@ -39869,7 +39901,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 664, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L664" } ], "type": { @@ -39898,7 +39930,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 666, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L666" } ], "type": { @@ -39918,7 +39950,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 662, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L662" } ] } @@ -39936,7 +39968,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 659, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L659" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L659" } ] } @@ -39963,7 +39995,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 680, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L680" } ], "type": { @@ -39996,7 +40028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 690, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L690" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L690" } ], "type": { @@ -40025,7 +40057,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L692" } ], "type": { @@ -40079,7 +40111,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 688, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L688" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L688" } ], "type": { @@ -40108,7 +40140,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 682, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L682" } ], "type": { @@ -40128,7 +40160,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 680, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L680" } ] } @@ -40153,7 +40185,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 679, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L679" } ], "type": { @@ -40173,7 +40205,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 677, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L677" } ] } @@ -40192,7 +40224,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 884, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L884" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L884" } ], "type": { @@ -40220,7 +40252,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 889, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L889" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L889" } ], "type": { @@ -40253,7 +40285,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 893, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L893" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L893" } ], "type": { @@ -40282,7 +40314,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 891, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L891" } ], "type": { @@ -40311,7 +40343,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 899, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L899" } ], "type": { @@ -40331,7 +40363,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 889, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L889" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L889" } ] } @@ -40356,7 +40388,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 887, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L887" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L887" } ], "type": { @@ -40376,7 +40408,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 885, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L885" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L885" } ] } @@ -40409,7 +40441,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 904, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L904" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L904" } ], "type": { @@ -40430,7 +40462,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 906, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L906" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L906" } ], "type": { @@ -40463,7 +40495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -40492,7 +40524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 908, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L908" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L908" } ], "type": { @@ -40521,7 +40553,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 916, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L916" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L916" } ], "type": { @@ -40541,7 +40573,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 906, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L906" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L906" } ] } @@ -40559,7 +40591,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 902, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L902" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L902" } ] } @@ -40578,7 +40610,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1833, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1833" } ], "type": { @@ -40611,7 +40643,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1844, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1844" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1844" } ], "type": { @@ -40644,7 +40676,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1833, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1833" } ] } @@ -40661,7 +40693,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1994, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1994" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1994" } ], "type": { @@ -40692,7 +40724,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 639, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L639" } ], "type": { @@ -40729,7 +40761,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 640, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L640" } ], "type": { @@ -40754,7 +40786,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 643, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L643" } ], "type": { @@ -40775,7 +40807,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 644, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L644" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L644" } ], "type": { @@ -40805,7 +40837,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L642" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L642" } ], "type": { @@ -40826,7 +40858,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 641, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L641" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L641" } ], "type": { @@ -40846,7 +40878,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 640, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L640" } ] } @@ -40864,7 +40896,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 639, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L639" } ] } @@ -40883,7 +40915,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L727" } ], "type": { @@ -40908,7 +40940,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 729, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L729" } ], "type": { @@ -40934,7 +40966,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 730, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L730" } ], "type": { @@ -40950,7 +40982,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 730, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L730" } ], "signatures": [ @@ -40981,7 +41013,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 729, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L729" } ] } @@ -41006,7 +41038,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 728, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L728" } ], "type": { @@ -41022,7 +41054,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 728, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L728" } ], "signatures": [ @@ -41110,7 +41142,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 733, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L733" } ], "type": { @@ -41126,7 +41158,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 733, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L733" } ], "signatures": [ @@ -41222,7 +41254,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 727, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L727" } ] } @@ -41239,7 +41271,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 736, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L736" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L736" } ], "type": { @@ -41265,7 +41297,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 738, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L738" } ], "type": { @@ -41286,7 +41318,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 746, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L746" } ], "type": { @@ -41319,7 +41351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 751, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L751" } ], "type": { @@ -41340,7 +41372,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 753, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L753" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L753" } ], "type": { @@ -41421,7 +41453,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 748, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L748" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L748" } ], "type": { @@ -41441,7 +41473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 746, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L746" } ] } @@ -41468,7 +41500,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 744, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L744" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L744" } ], "type": { @@ -41505,7 +41537,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 741, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L741" } ], "type": { @@ -41527,7 +41559,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 737, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L737" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L737" } ] } @@ -41552,7 +41584,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 759, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L759" } ], "type": { @@ -41603,7 +41635,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 762, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L762" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L762" } ], "type": { @@ -41624,7 +41656,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 767, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L767" } ], "type": { @@ -41657,7 +41689,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 769, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L769" } ], "type": { @@ -41677,7 +41709,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 767, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L767" } ] } @@ -41702,7 +41734,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 765, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L765" } ], "type": { @@ -41727,7 +41759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 758, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L758" } ] } @@ -41746,7 +41778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 300, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L300" } ], "type": { @@ -41789,7 +41821,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L308" } ], "type": { @@ -41809,7 +41841,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 300, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L300" } ] } @@ -41830,7 +41862,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2720, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2720" } ], "type": { @@ -41855,7 +41887,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2721" } ], "type": { @@ -41880,7 +41912,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2722, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2722" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2722" } ], "type": { @@ -41900,7 +41932,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2721, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2721" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2721" } ] } @@ -41918,7 +41950,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2720, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2720" } ] } @@ -41943,7 +41975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 225, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L225" } ], "typeParameters": [ @@ -42010,7 +42042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1802, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1802" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1802" } ], "type": { @@ -42102,7 +42134,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1812, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1812" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1812" } ], "type": { @@ -42122,7 +42154,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1804, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1804" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1804" } ] } @@ -42165,7 +42197,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2323, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2323" } ], "type": { @@ -42198,7 +42230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2331, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2331" } ], "type": { @@ -42230,7 +42262,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2337, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2337" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2337" } ], "type": { @@ -42274,7 +42306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2339, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2339" } ], "type": { @@ -42318,7 +42350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2351" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2351" } ], "type": { @@ -42347,7 +42379,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2327, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2327" } ], "type": { @@ -42376,7 +42408,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2329, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2329" } ], "type": { @@ -42405,7 +42437,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2347, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2347" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2347" } ], "type": { @@ -42434,7 +42466,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2343, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2343" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2343" } ], "type": { @@ -42463,7 +42495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2341" } ], "type": { @@ -42492,7 +42524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2345, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2345" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2345" } ], "type": { @@ -42521,7 +42553,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2357" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2357" } ], "type": { @@ -42550,7 +42582,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2325" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2325" } ], "type": { @@ -42579,7 +42611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2335, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2335" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2335" } ], "type": { @@ -42608,7 +42640,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2333" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2333" } ], "type": { @@ -42640,7 +42672,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2349" } ], "type": { @@ -42669,7 +42701,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2353" } ], "type": { @@ -42698,7 +42730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2355" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2355" } ], "type": { @@ -42721,7 +42753,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2323, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2323" } ] } @@ -42746,7 +42778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2090, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2090" } ], "type": { @@ -42779,7 +42811,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2092, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2092" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2092" } ], "type": { @@ -42808,7 +42840,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2094, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2094" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2094" } ], "type": { @@ -42837,7 +42869,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2100" } ], "type": { @@ -42871,7 +42903,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2096, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2096" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2096" } ], "type": { @@ -42900,7 +42932,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2098, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2098" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2098" } ], "type": { @@ -42932,7 +42964,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2102" } ], "type": { @@ -42954,7 +42986,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2090, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2090" } ] } @@ -42971,7 +43003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 311, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L311" } ], "type": { @@ -42998,7 +43030,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L312" } ], "type": { @@ -43020,7 +43052,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 311, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L311" } ] } @@ -43041,7 +43073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 814, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L814" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L814" } ], "type": { @@ -43079,7 +43111,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2726, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2726" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2726" } ], "type": { @@ -43110,7 +43142,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2728, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2728" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2728" } ], "type": { @@ -43137,7 +43169,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2730, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2730" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2730" } ], "type": { @@ -43162,7 +43194,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2726, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2726" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2726" } ] } @@ -43179,7 +43211,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2713, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2713" } ], "type": { @@ -43210,7 +43242,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2715, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2715" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2715" } ], "type": { @@ -43237,7 +43269,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2717, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2717" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2717" } ], "type": { @@ -43262,7 +43294,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2713, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L2713" } ] } @@ -43279,7 +43311,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 209, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L209" } ], "type": { @@ -43302,7 +43334,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L211" } ], "type": { @@ -43321,7 +43353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L210" } ], "type": { @@ -43346,7 +43378,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 209, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L209" } ] } @@ -43363,7 +43395,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 208, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L208" } ], "type": { @@ -43398,7 +43430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 812, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L812" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L812" } ], "type": { @@ -43432,7 +43464,7 @@ "fileName": "packages/core/auth-js/src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/AuthAdminApi.ts#L3" } ], "type": { @@ -43459,7 +43491,7 @@ "fileName": "packages/core/auth-js/src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/AuthClient.ts#L3" } ], "type": { @@ -43490,7 +43522,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L6" } ], "type": { @@ -43517,7 +43549,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L10" } ], "type": { @@ -43538,7 +43570,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L6" } ] } @@ -43558,7 +43590,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1993, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/types.ts#L1993" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/types.ts#L1993" } ], "type": { @@ -43595,7 +43627,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L75" } ], "signatures": [ @@ -43610,7 +43642,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L75" } ], "parameters": [ @@ -43651,7 +43683,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L50" } ], "signatures": [ @@ -43666,7 +43698,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L50" } ], "parameters": [ @@ -43707,7 +43739,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L210" } ], "signatures": [ @@ -43722,7 +43754,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L210" } ], "parameters": [ @@ -43763,7 +43795,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L274" } ], "signatures": [ @@ -43778,7 +43810,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L274" } ], "parameters": [ @@ -43819,7 +43851,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L296" } ], "signatures": [ @@ -43834,7 +43866,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L296" } ], "parameters": [ @@ -43875,7 +43907,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L140" } ], "signatures": [ @@ -43890,7 +43922,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L140" } ], "parameters": [ @@ -43931,7 +43963,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 341, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L341" } ], "signatures": [ @@ -43946,7 +43978,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 341, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/errors.ts#L341" } ], "parameters": [ @@ -43987,7 +44019,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L96" } ], "signatures": [ @@ -44063,7 +44095,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L96" } ], "typeParameters": [ @@ -44149,7 +44181,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L99" } ], "signatures": [ @@ -44164,7 +44196,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L99" } ], "type": { @@ -44223,7 +44255,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 323, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L323" } ], "signatures": [ @@ -44266,7 +44298,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 323, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L323" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L323" } ], "typeParameters": [ @@ -44352,7 +44384,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 326, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L326" } ], "signatures": [ @@ -44367,7 +44399,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 326, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/auth-js/src/lib/locks.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/auth-js/src/lib/locks.ts#L326" } ], "type": { diff --git a/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json b/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json index 8f0966a6a44b7..a8bf5a3841440 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json @@ -25,7 +25,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "signatures": [ @@ -79,7 +79,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "typeParameters": [ @@ -148,7 +148,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -169,7 +169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -396,7 +396,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -422,7 +422,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -441,7 +441,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -483,7 +483,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 128, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" } ], "type": { @@ -504,7 +504,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -525,7 +525,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" } ], "type": { @@ -546,7 +546,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -567,7 +567,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -591,7 +591,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -617,7 +617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -637,7 +637,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ] } @@ -694,7 +694,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -715,7 +715,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -944,7 +944,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -970,7 +970,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -991,7 +991,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -1033,7 +1033,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" } ], "type": { @@ -1056,7 +1056,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -1077,7 +1077,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" } ], "type": { @@ -1098,7 +1098,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -1121,7 +1121,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -1147,7 +1147,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -1173,7 +1173,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" } ], "type": { @@ -1192,7 +1192,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "signatures": [ @@ -1354,7 +1354,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "typeParameters": [ @@ -1409,7 +1409,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -1429,7 +1429,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -1454,7 +1454,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -1474,7 +1474,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -1699,7 +1699,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "signatures": [ @@ -1737,7 +1737,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "parameters": [ @@ -1779,7 +1779,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 552, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" } ], "signatures": [ @@ -1830,7 +1830,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 552, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" } ], "typeParameters": [ @@ -1915,7 +1915,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "signatures": [ @@ -1949,7 +1949,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "parameters": [ @@ -1994,7 +1994,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "signatures": [ @@ -2094,7 +2094,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "type": { @@ -2115,7 +2115,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "signatures": [ @@ -2149,7 +2149,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "typeParameters": [ @@ -2256,7 +2256,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "signatures": [ @@ -2271,7 +2271,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "parameters": [ @@ -2403,7 +2403,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "signatures": [ @@ -2418,7 +2418,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "parameters": [ @@ -2526,7 +2526,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "signatures": [ @@ -2566,7 +2566,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "type": { @@ -2673,7 +2673,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 68, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" } ], "typeParameters": [ @@ -2807,7 +2807,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "signatures": [ @@ -2886,7 +2886,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "typeParameters": [ @@ -2943,7 +2943,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -2969,7 +2969,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -3223,7 +3223,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L98" } ], "type": { @@ -3460,7 +3460,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 96, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L96" } ], "type": { @@ -3503,7 +3503,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 101, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L101" } ], "type": { @@ -3532,7 +3532,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L97" } ], "type": { @@ -3565,7 +3565,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L99" } ], "type": { @@ -3594,7 +3594,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L100" } ], "type": { @@ -3615,7 +3615,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 95, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L95" } ] } @@ -3680,7 +3680,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L40" } ], "type": { @@ -3907,7 +3907,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L38" } ], "type": { @@ -3933,7 +3933,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L44" } ], "type": { @@ -3954,7 +3954,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L39" } ], "type": { @@ -3977,7 +3977,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L37" } ], "type": { @@ -3996,7 +3996,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 41, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L41" } ], "type": { @@ -4044,19 +4044,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L166" } ], "signatures": [ @@ -4071,7 +4071,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L152" } ], "typeParameters": [ @@ -4170,7 +4170,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L156" } ], "typeParameters": [ @@ -4271,7 +4271,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "signatures": [ @@ -4512,7 +4512,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "typeParameters": [ @@ -4738,7 +4738,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 392, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L392" } ], "type": { @@ -4788,7 +4788,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 391, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L391" } ], "type": { @@ -4834,7 +4834,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 390, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L390" } ], "type": { @@ -4855,7 +4855,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 389, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L389" } ] } @@ -4962,7 +4962,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "signatures": [ @@ -4996,7 +4996,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "typeParameters": [ @@ -5146,7 +5146,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 16, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L16" } ], "typeParameters": [ @@ -5211,7 +5211,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -5237,7 +5237,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -5265,7 +5265,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 22, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L22" } ] } @@ -5539,7 +5539,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "signatures": [ @@ -5568,7 +5568,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "parameters": [ @@ -5598,7 +5598,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 73, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -5617,7 +5617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -5636,7 +5636,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -5655,7 +5655,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -5675,7 +5675,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ] } @@ -5713,7 +5713,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L9" } ], "type": { @@ -5732,7 +5732,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L7" } ], "type": { @@ -5751,7 +5751,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L8" } ], "type": { @@ -5770,7 +5770,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "signatures": [ @@ -5785,7 +5785,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5808,7 +5808,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5827,7 +5827,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5846,7 +5846,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 62, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5865,7 +5865,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5884,7 +5884,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5904,7 +5904,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ] } @@ -5932,7 +5932,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 6, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L6" } ], "extendedTypes": [ @@ -5965,7 +5965,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "signatures": [ @@ -6019,7 +6019,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "typeParameters": [ @@ -6148,7 +6148,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -6169,7 +6169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -6396,7 +6396,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -6422,7 +6422,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -6441,7 +6441,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -6483,7 +6483,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 128, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" } ], "type": { @@ -6504,7 +6504,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -6525,7 +6525,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" } ], "type": { @@ -6546,7 +6546,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -6567,7 +6567,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -6591,7 +6591,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -6617,7 +6617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -6637,7 +6637,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ] } @@ -6737,7 +6737,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -6764,7 +6764,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -6999,7 +6999,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -7031,7 +7031,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -7058,7 +7058,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -7106,7 +7106,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" } ], "type": { @@ -7135,7 +7135,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -7162,7 +7162,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" } ], "type": { @@ -7189,7 +7189,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -7218,7 +7218,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -7250,7 +7250,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -7282,7 +7282,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" } ], "type": { @@ -7308,7 +7308,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "signatures": [ @@ -7432,7 +7432,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "parameters": [ @@ -7677,19 +7677,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1119" } ], "signatures": [ @@ -7704,7 +7704,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" } ], "typeParameters": [ @@ -7812,7 +7812,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" } ], "parameters": [ @@ -8080,19 +8080,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L970" } ], "signatures": [ @@ -8107,7 +8107,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" } ], "typeParameters": [ @@ -8215,7 +8215,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" } ], "parameters": [ @@ -8297,7 +8297,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "signatures": [ @@ -8386,7 +8386,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "type": { @@ -8434,7 +8434,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" } ], "signatures": [ @@ -8552,7 +8552,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" } ], "typeParameters": [ @@ -8885,7 +8885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "signatures": [ @@ -9035,7 +9035,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "parameters": [ @@ -9091,7 +9091,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 850, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" } ], "type": { @@ -9129,7 +9129,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 853, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" } ], "type": { @@ -9171,7 +9171,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 855, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" } ], "type": { @@ -9218,7 +9218,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 852, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" } ], "type": { @@ -9264,7 +9264,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "type": { @@ -9302,7 +9302,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 854, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" } ], "type": { @@ -9323,7 +9323,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 849, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" } ] } @@ -9592,21 +9592,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1986, + "line": 1988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1986" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1988" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1991, + "line": 1993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1991" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1993" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 2104, + "line": 2106, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2106" } ], "signatures": [ @@ -9619,9 +9619,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1986, + "line": 1988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1986" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1988" } ], "typeParameters": [ @@ -9799,9 +9799,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1991, + "line": 1993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1991" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1993" } ], "parameters": [ @@ -9859,7 +9859,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "signatures": [ @@ -9903,7 +9903,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "type": { @@ -10094,19 +10094,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L289" } ], "signatures": [ @@ -10121,7 +10121,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" } ], "typeParameters": [ @@ -10194,7 +10194,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" } ], "parameters": [ @@ -10346,19 +10346,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 343, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L343" } ], "signatures": [ @@ -10373,7 +10373,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" } ], "typeParameters": [ @@ -10446,7 +10446,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" } ], "parameters": [ @@ -10598,19 +10598,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 583, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" } ], "signatures": [ @@ -10625,7 +10625,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" } ], "typeParameters": [ @@ -10684,7 +10684,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ], "parameters": [ @@ -10784,19 +10784,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 588, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 592, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 601, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" } ], "signatures": [ @@ -10811,7 +10811,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 588, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" } ], "typeParameters": [ @@ -10877,7 +10877,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 592, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" } ], "parameters": [ @@ -10984,19 +10984,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 610, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L619" } ], "signatures": [ @@ -11011,7 +11011,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" } ], "typeParameters": [ @@ -11077,7 +11077,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 610, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" } ], "parameters": [ @@ -11129,7 +11129,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" } ], "signatures": [ @@ -11231,7 +11231,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" } ], "typeParameters": [ @@ -11597,19 +11597,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 656, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 710, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L710" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L710" } ], "signatures": [ @@ -11624,7 +11624,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" } ], "typeParameters": [ @@ -11715,7 +11715,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 656, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" } ], "parameters": [ @@ -11769,7 +11769,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 725, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" } ], "signatures": [ @@ -11840,7 +11840,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 725, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" } ], "typeParameters": [ @@ -12126,19 +12126,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 497, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L497" } ], "signatures": [ @@ -12153,7 +12153,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" } ], "typeParameters": [ @@ -12212,7 +12212,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" } ], "parameters": [ @@ -12312,19 +12312,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L515" } ], "signatures": [ @@ -12339,7 +12339,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" } ], "typeParameters": [ @@ -12405,7 +12405,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" } ], "parameters": [ @@ -12512,19 +12512,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 533, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L533" } ], "signatures": [ @@ -12539,7 +12539,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" } ], "typeParameters": [ @@ -12605,7 +12605,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" } ], "parameters": [ @@ -12659,7 +12659,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "signatures": [ @@ -12791,7 +12791,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "parameters": [ @@ -12866,7 +12866,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -12895,7 +12895,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -12916,7 +12916,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ] } @@ -13059,19 +13059,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 393, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L393" } ], "signatures": [ @@ -13086,7 +13086,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" } ], "typeParameters": [ @@ -13159,7 +13159,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" } ], "parameters": [ @@ -13311,19 +13311,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 398, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 399, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L447" } ], "signatures": [ @@ -13338,7 +13338,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 398, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" } ], "typeParameters": [ @@ -13411,7 +13411,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 399, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" } ], "parameters": [ @@ -13553,19 +13553,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1727, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1727" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1727" } ], "signatures": [ @@ -13580,7 +13580,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" } ], "typeParameters": [ @@ -13657,7 +13657,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" } ], "parameters": [ @@ -13708,7 +13708,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "signatures": [ @@ -13744,7 +13744,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "parameters": [ @@ -13950,7 +13950,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "signatures": [ @@ -14054,7 +14054,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "typeParameters": [ @@ -14161,7 +14161,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" } ], "signatures": [ @@ -14263,7 +14263,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" } ], "typeParameters": [ @@ -14707,25 +14707,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1738, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1751, + "line": 1752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1752" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1756, + "line": 1757, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1757" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1815, + "line": 1816, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1816" } ], "signatures": [ @@ -14740,7 +14740,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1738, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" } ], "typeParameters": [ @@ -14795,58 +14795,137 @@ } ], "type": { - "type": "reference", - "target": 194, - "typeArguments": [ - { - "type": "reference", - "target": 197, - "name": "ClientOptions", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.ClientOptions", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 198, - "name": "Schema", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Schema", - "refersToTypeParameter": true - }, + "type": "intersection", + "types": [ { "type": "reference", - "target": { - "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "NonNullableColumn" - }, + "target": 194, "typeArguments": [ { "type": "reference", - "target": 199, - "name": "Row", + "target": 197, + "name": "ClientOptions", "package": "@supabase/postgrest-js", - "qualifiedName": "default.Row", + "qualifiedName": "default.ClientOptions", "refersToTypeParameter": true }, { "type": "reference", - "target": 443, - "name": "ColumnName", + "target": 198, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "NonNullableColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 199, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 443, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NonNullableColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "NarrowResultColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 200, + "name": "Result", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Result", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 443, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NarrowResultColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": 201, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 202, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 203, + "name": "Method", "package": "@supabase/postgrest-js", + "qualifiedName": "default.Method", "refersToTypeParameter": true } ], - "name": "NonNullableColumn", - "package": "@supabase/postgrest-js" + "name": "PostgrestFilterBuilder", + "package": "@supabase/postgrest-js", + "qualifiedName": "default" }, { "type": "reference", - "target": { - "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "NarrowResultColumn" - }, + "target": 194, "typeArguments": [ + { + "type": "reference", + "target": 197, + "name": "ClientOptions", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.ClientOptions", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 198, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 199, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, { "type": "reference", "target": 200, @@ -14857,43 +14936,34 @@ }, { "type": "reference", - "target": 443, - "name": "ColumnName", + "target": 201, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 202, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 203, + "name": "Method", "package": "@supabase/postgrest-js", + "qualifiedName": "default.Method", "refersToTypeParameter": true } ], - "name": "NarrowResultColumn", - "package": "@supabase/postgrest-js" - }, - { - "type": "reference", - "target": 201, - "name": "RelationName", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.RelationName", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 202, - "name": "Relationships", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Relationships", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 203, - "name": "Method", + "name": "PostgrestFilterBuilder", "package": "@supabase/postgrest-js", - "qualifiedName": "default.Method", - "refersToTypeParameter": true + "qualifiedName": "default" } - ], - "name": "PostgrestFilterBuilder", - "package": "@supabase/postgrest-js", - "qualifiedName": "default" + ] } }, { @@ -14905,9 +14975,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1751, + "line": 1752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1752" } ], "typeParameters": [ @@ -14994,9 +15064,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1756, + "line": 1757, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1757" } ], "parameters": [ @@ -15052,7 +15122,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" } ], "signatures": [ @@ -15091,7 +15161,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" } ], "typeParameters": [ @@ -15275,9 +15345,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1974, + "line": 1976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1974" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1976" } ], "signatures": [ @@ -15510,9 +15580,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1974, + "line": 1976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1974" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1976" } ], "parameters": [ @@ -15585,9 +15655,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1979, + "line": 1981, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1981" } ], "type": { @@ -15614,9 +15684,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1979, + "line": 1981, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1981" } ], "type": { @@ -15635,9 +15705,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1979, + "line": 1981, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1981" } ] } @@ -15966,31 +16036,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" } ], "signatures": [ @@ -16007,7 +16077,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" } ], "typeParameters": [ @@ -16068,7 +16138,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -16089,7 +16159,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -16110,7 +16180,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -16130,7 +16200,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ] } @@ -16160,7 +16230,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" } ], "parameters": [ @@ -16205,7 +16275,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -16226,7 +16296,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -16247,7 +16317,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -16267,7 +16337,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ] } @@ -16323,7 +16393,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" } ], "typeParameters": [ @@ -16384,7 +16454,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -16405,7 +16475,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -16426,7 +16496,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -16446,7 +16516,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ] } @@ -16502,7 +16572,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" } ], "parameters": [ @@ -16547,7 +16617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -16568,7 +16638,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -16589,7 +16659,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -16609,7 +16679,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ] } @@ -16780,19 +16850,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1540, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1540" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1540" } ], "signatures": [ @@ -16807,7 +16877,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" } ], "typeParameters": [ @@ -16896,7 +16966,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" } ], "parameters": [ @@ -16959,7 +17029,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "signatures": [ @@ -17123,7 +17193,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "typeParameters": [ @@ -17178,7 +17248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -17198,7 +17268,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -17223,7 +17293,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -17243,7 +17313,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -17476,7 +17546,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "signatures": [ @@ -17604,7 +17674,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "parameters": [ @@ -17698,7 +17768,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -17727,7 +17797,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -17748,7 +17818,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ] } @@ -17908,19 +17978,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1383, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1439, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1439" } ], "signatures": [ @@ -17935,7 +18005,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" } ], "typeParameters": [ @@ -17994,7 +18064,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1383, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" } ], "parameters": [ @@ -18163,19 +18233,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1190" } ], "signatures": [ @@ -18190,7 +18260,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" } ], "typeParameters": [ @@ -18249,7 +18319,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" } ], "parameters": [ @@ -18426,19 +18496,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1253" } ], "signatures": [ @@ -18453,7 +18523,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" } ], "typeParameters": [ @@ -18512,7 +18582,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" } ], "parameters": [ @@ -18681,19 +18751,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1314, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1314" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1314" } ], "signatures": [ @@ -18708,7 +18778,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" } ], "typeParameters": [ @@ -18767,7 +18837,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" } ], "parameters": [ @@ -18944,19 +19014,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1377" } ], "signatures": [ @@ -18971,7 +19041,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" } ], "typeParameters": [ @@ -19030,7 +19100,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" } ], "parameters": [ @@ -19129,19 +19199,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 638, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 647, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L647" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L647" } ], "signatures": [ @@ -19156,7 +19226,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 638, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" } ], "typeParameters": [ @@ -19215,7 +19285,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" } ], "parameters": [ @@ -19314,19 +19384,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 633, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L633" } ], "signatures": [ @@ -19341,7 +19411,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "typeParameters": [ @@ -19400,7 +19470,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" } ], "parameters": [ @@ -19447,7 +19517,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "signatures": [ @@ -19487,7 +19557,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "parameters": [ @@ -19541,7 +19611,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "signatures": [ @@ -19649,7 +19719,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "typeParameters": [ @@ -19778,7 +19848,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "signatures": [ @@ -19822,7 +19892,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "type": { @@ -19855,7 +19925,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "signatures": [ @@ -19983,7 +20053,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "typeParameters": [ @@ -20234,7 +20304,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "signatures": [ @@ -20270,7 +20340,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "parameters": [ @@ -20327,7 +20397,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "signatures": [ @@ -20431,7 +20501,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "typeParameters": [ @@ -20531,7 +20601,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "signatures": [ @@ -20633,7 +20703,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "type": { @@ -20923,19 +20993,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1556, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1664, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1664" } ], "signatures": [ @@ -20950,7 +21020,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" } ], "typeParameters": [ @@ -21022,7 +21092,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1554, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" } ], "type": { @@ -21043,7 +21113,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1554, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" } ], "type": { @@ -21076,7 +21146,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1554, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" } ] } @@ -21099,7 +21169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1556, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" } ], "parameters": [ @@ -21155,7 +21225,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1559, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" } ], "type": { @@ -21176,7 +21246,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1559, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" } ], "type": { @@ -21209,7 +21279,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1559, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" } ] } @@ -21236,7 +21306,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "signatures": [ @@ -21272,7 +21342,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "typeParameters": [ @@ -21348,7 +21418,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "signatures": [ @@ -21363,7 +21433,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "parameters": [ @@ -21464,7 +21534,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "signatures": [ @@ -21479,7 +21549,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "parameters": [ @@ -21589,7 +21659,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "signatures": [ @@ -21631,7 +21701,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "type": { @@ -21790,7 +21860,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 95, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" } ], "typeParameters": [ @@ -21975,7 +22045,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "signatures": [ @@ -22029,7 +22099,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "typeParameters": [ @@ -22139,7 +22209,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -22165,7 +22235,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -22256,7 +22326,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "type": { @@ -22493,7 +22563,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 74, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" } ], "type": { @@ -22528,7 +22598,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 78, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" } ], "type": { @@ -22557,7 +22627,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" } ], "type": { @@ -22586,7 +22656,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 77, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" } ], "type": { @@ -22607,7 +22677,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 73, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" } ] } @@ -22679,7 +22749,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" } ], "type": { @@ -22906,7 +22976,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" } ], "type": { @@ -22948,7 +23018,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" } ], "type": { @@ -22969,7 +23039,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" } ], "type": { @@ -22990,7 +23060,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" } ], "type": { @@ -23014,7 +23084,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" } ], "type": { @@ -23038,7 +23108,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" } ], "type": { @@ -23057,7 +23127,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1749, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" } ], "signatures": [ @@ -23264,7 +23334,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1749, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" } ], "parameters": [ @@ -23344,7 +23414,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1752, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1752" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1752" } ], "type": { @@ -23377,7 +23447,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1751, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1751" } ] } @@ -23687,19 +23757,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1086, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" } ], "signatures": [ @@ -23714,7 +23784,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" } ], "typeParameters": [ @@ -23789,7 +23859,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 942, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" } ], "type": { @@ -23809,7 +23879,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 942, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" } ] } @@ -23886,7 +23956,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 946, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L946" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L946" } ], "type": { @@ -23919,7 +23989,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 945, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L945" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L945" } ] } @@ -24002,7 +24072,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" } ], "typeParameters": [ @@ -24079,7 +24149,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 959, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" } ], "type": { @@ -24099,7 +24169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 959, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" } ] } @@ -24177,7 +24247,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 963, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L963" } ], "type": { @@ -24211,7 +24281,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 964, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L964" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L964" } ], "type": { @@ -24231,7 +24301,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 962, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L962" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L962" } ] } @@ -24316,7 +24386,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 878, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" } ], "signatures": [ @@ -25033,7 +25103,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 878, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" } ], "typeParameters": [ @@ -25229,7 +25299,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 892, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L892" } ], "type": { @@ -25287,7 +25357,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 891, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L891" } ], "type": { @@ -25307,7 +25377,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 890, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L890" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L890" } ] } @@ -25398,7 +25468,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" } ], "signatures": [ @@ -25574,7 +25644,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" } ], "typeParameters": [ @@ -25657,7 +25727,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1595, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" } ], "type": { @@ -25677,7 +25747,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1595, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" } ] } @@ -25800,7 +25870,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1601, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1601" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1601" } ], "type": { @@ -25833,7 +25903,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1600, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1600" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1600" } ] } @@ -26336,19 +26406,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1391, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1391" } ], "signatures": [ @@ -26363,7 +26433,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" } ], "typeParameters": [ @@ -26438,7 +26508,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1145, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" } ], "type": { @@ -26458,7 +26528,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1145, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" } ] } @@ -26535,7 +26605,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1151" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1151" } ], "type": { @@ -26569,7 +26639,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1150, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1150" } ], "type": { @@ -26590,7 +26660,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1149, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1149" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1149" } ], "type": { @@ -26610,7 +26680,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1148, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1148" } ] } @@ -26693,7 +26763,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" } ], "typeParameters": [ @@ -26770,7 +26840,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1164, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" } ], "type": { @@ -26790,7 +26860,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1164, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" } ] } @@ -26868,7 +26938,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1170, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1170" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1170" } ], "type": { @@ -26902,7 +26972,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1171, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1171" } ], "type": { @@ -26923,7 +26993,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1169, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1169" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1169" } ], "type": { @@ -26944,7 +27014,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1168" } ], "type": { @@ -26964,7 +27034,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1167, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1167" } ] } @@ -27068,7 +27138,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 12, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" } ], "typeParameters": [ @@ -27178,7 +27248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -27198,7 +27268,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -27239,7 +27309,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "signatures": [ @@ -27293,7 +27363,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "typeParameters": [ @@ -27422,7 +27492,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -27443,7 +27513,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -27670,7 +27740,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -27696,7 +27766,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -27715,7 +27785,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -27757,7 +27827,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 128, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" } ], "type": { @@ -27778,7 +27848,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -27799,7 +27869,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" } ], "type": { @@ -27820,7 +27890,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -27841,7 +27911,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -27865,7 +27935,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -27891,7 +27961,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -27911,7 +27981,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ] } @@ -28011,7 +28081,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -28038,7 +28108,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -28273,7 +28343,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -28305,7 +28375,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -28332,7 +28402,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -28380,7 +28450,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" } ], "type": { @@ -28409,7 +28479,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -28436,7 +28506,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" } ], "type": { @@ -28463,7 +28533,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -28492,7 +28562,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -28524,7 +28594,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -28556,7 +28626,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" } ], "type": { @@ -28580,7 +28650,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "signatures": [ @@ -28702,7 +28772,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "parameters": [ @@ -28749,7 +28819,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "signatures": [ @@ -28836,7 +28906,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "type": { @@ -28874,7 +28944,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "signatures": [ @@ -29022,7 +29092,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "parameters": [ @@ -29078,7 +29148,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 850, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" } ], "type": { @@ -29116,7 +29186,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 853, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" } ], "type": { @@ -29158,7 +29228,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 855, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" } ], "type": { @@ -29205,7 +29275,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 852, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" } ], "type": { @@ -29251,7 +29321,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "type": { @@ -29289,7 +29359,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 854, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" } ], "type": { @@ -29310,7 +29380,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 849, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" } ] } @@ -29405,7 +29475,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "signatures": [ @@ -29447,7 +29517,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "type": { @@ -29500,7 +29570,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "signatures": [ @@ -29630,7 +29700,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "parameters": [ @@ -29705,7 +29775,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -29734,7 +29804,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -29755,7 +29825,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ] } @@ -29781,7 +29851,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "signatures": [ @@ -29815,7 +29885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "parameters": [ @@ -30009,7 +30079,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "signatures": [ @@ -30111,7 +30181,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "typeParameters": [ @@ -30509,31 +30579,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" } ], "signatures": [ @@ -30548,7 +30618,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" } ], "typeParameters": [ @@ -30609,7 +30679,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -30630,7 +30700,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -30651,7 +30721,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -30671,7 +30741,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ] } @@ -30694,7 +30764,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" } ], "parameters": [ @@ -30739,7 +30809,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -30760,7 +30830,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -30781,7 +30851,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -30801,7 +30871,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ] } @@ -30850,7 +30920,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" } ], "typeParameters": [ @@ -30911,7 +30981,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -30932,7 +31002,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -30953,7 +31023,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -30973,7 +31043,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ] } @@ -31022,7 +31092,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" } ], "parameters": [ @@ -31067,7 +31137,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -31088,7 +31158,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -31109,7 +31179,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -31129,7 +31199,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ] } @@ -31156,7 +31226,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "signatures": [ @@ -31320,7 +31390,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "typeParameters": [ @@ -31375,7 +31445,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -31395,7 +31465,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -31420,7 +31490,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -31440,7 +31510,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -31671,7 +31741,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "signatures": [ @@ -31797,7 +31867,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "parameters": [ @@ -31891,7 +31961,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -31920,7 +31990,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -31941,7 +32011,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ] } @@ -31969,7 +32039,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "signatures": [ @@ -32009,7 +32079,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "parameters": [ @@ -32061,7 +32131,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "signatures": [ @@ -32167,7 +32237,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "typeParameters": [ @@ -32294,7 +32364,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "signatures": [ @@ -32336,7 +32406,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "type": { @@ -32357,7 +32427,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "signatures": [ @@ -32483,7 +32553,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "typeParameters": [ @@ -32724,7 +32794,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "signatures": [ @@ -32760,7 +32830,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "parameters": [ @@ -32815,7 +32885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "signatures": [ @@ -32917,7 +32987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "typeParameters": [ @@ -33007,7 +33077,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "signatures": [ @@ -33109,7 +33179,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "type": { @@ -33142,7 +33212,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "signatures": [ @@ -33178,7 +33248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "typeParameters": [ @@ -33254,7 +33324,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "signatures": [ @@ -33269,7 +33339,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "parameters": [ @@ -33370,7 +33440,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "signatures": [ @@ -33385,7 +33455,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "parameters": [ @@ -33495,7 +33565,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "signatures": [ @@ -33537,7 +33607,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "type": { @@ -33691,7 +33761,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" } ], "typeParameters": [ @@ -33843,7 +33913,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L25" } ], "type": { @@ -33862,7 +33932,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L24" } ], "type": { @@ -33881,7 +33951,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L23" } ], "type": { @@ -33905,7 +33975,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -33931,7 +34001,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -33955,7 +34025,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L22" } ], "type": { @@ -33975,7 +34045,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 21, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L21" } ], "extendedTypes": [ @@ -34008,7 +34078,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L19" } ], "type": { @@ -34036,7 +34106,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L18" } ], "type": { @@ -34059,7 +34129,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L17" } ], "type": { @@ -34080,7 +34150,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -34106,7 +34176,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -34130,7 +34200,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L16" } ], "type": { @@ -34150,7 +34220,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 15, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L15" } ], "typeParameters": [ @@ -34185,7 +34255,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/common/common.ts#L81" } ], "type": { @@ -34210,7 +34280,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/common/common.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/common/common.ts#L82" } ], "type": { @@ -34230,7 +34300,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/common/common.ts#L81" } ] } @@ -34247,7 +34317,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L32" } ], "typeParameters": [ @@ -34295,7 +34365,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 33, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L33" } ], "typeParameters": [ @@ -34337,7 +34407,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L31" } ], "typeParameters": [ @@ -34395,7 +34465,7 @@ "fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" } ], "typeParameters": [ @@ -34980,7 +35050,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L16" } ], "type": { @@ -35003,7 +35073,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L21" } ], "type": { @@ -35027,7 +35097,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L17" } ], "type": { @@ -35051,7 +35121,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L22" } ], "type": { @@ -35075,7 +35145,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L19" } ], "type": { @@ -35099,7 +35169,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L18" } ], "type": { @@ -35123,7 +35193,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L20" } ], "type": { @@ -35148,7 +35218,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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 8f0966a6a44b7..a8bf5a3841440 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json @@ -25,7 +25,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "signatures": [ @@ -79,7 +79,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "typeParameters": [ @@ -148,7 +148,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -169,7 +169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -396,7 +396,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -422,7 +422,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -441,7 +441,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -483,7 +483,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 128, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" } ], "type": { @@ -504,7 +504,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -525,7 +525,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" } ], "type": { @@ -546,7 +546,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -567,7 +567,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -591,7 +591,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -617,7 +617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -637,7 +637,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ] } @@ -694,7 +694,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -715,7 +715,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -944,7 +944,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -970,7 +970,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -991,7 +991,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -1033,7 +1033,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" } ], "type": { @@ -1056,7 +1056,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -1077,7 +1077,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" } ], "type": { @@ -1098,7 +1098,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -1121,7 +1121,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -1147,7 +1147,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -1173,7 +1173,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" } ], "type": { @@ -1192,7 +1192,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "signatures": [ @@ -1354,7 +1354,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "typeParameters": [ @@ -1409,7 +1409,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -1429,7 +1429,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -1454,7 +1454,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -1474,7 +1474,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -1699,7 +1699,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "signatures": [ @@ -1737,7 +1737,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "parameters": [ @@ -1779,7 +1779,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 552, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" } ], "signatures": [ @@ -1830,7 +1830,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 552, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L552" } ], "typeParameters": [ @@ -1915,7 +1915,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "signatures": [ @@ -1949,7 +1949,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "parameters": [ @@ -1994,7 +1994,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "signatures": [ @@ -2094,7 +2094,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "type": { @@ -2115,7 +2115,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "signatures": [ @@ -2149,7 +2149,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "typeParameters": [ @@ -2256,7 +2256,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "signatures": [ @@ -2271,7 +2271,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "parameters": [ @@ -2403,7 +2403,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "signatures": [ @@ -2418,7 +2418,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "parameters": [ @@ -2526,7 +2526,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "signatures": [ @@ -2566,7 +2566,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "type": { @@ -2673,7 +2673,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 68, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" } ], "typeParameters": [ @@ -2807,7 +2807,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "signatures": [ @@ -2886,7 +2886,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "typeParameters": [ @@ -2943,7 +2943,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -2969,7 +2969,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -3223,7 +3223,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L98" } ], "type": { @@ -3460,7 +3460,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 96, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L96" } ], "type": { @@ -3503,7 +3503,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 101, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L101" } ], "type": { @@ -3532,7 +3532,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L97" } ], "type": { @@ -3565,7 +3565,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L99" } ], "type": { @@ -3594,7 +3594,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L100" } ], "type": { @@ -3615,7 +3615,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 95, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L95" } ] } @@ -3680,7 +3680,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L40" } ], "type": { @@ -3907,7 +3907,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L38" } ], "type": { @@ -3933,7 +3933,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L44" } ], "type": { @@ -3954,7 +3954,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L39" } ], "type": { @@ -3977,7 +3977,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L37" } ], "type": { @@ -3996,7 +3996,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 41, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L41" } ], "type": { @@ -4044,19 +4044,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L166" } ], "signatures": [ @@ -4071,7 +4071,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L152" } ], "typeParameters": [ @@ -4170,7 +4170,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L156" } ], "typeParameters": [ @@ -4271,7 +4271,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "signatures": [ @@ -4512,7 +4512,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "typeParameters": [ @@ -4738,7 +4738,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 392, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L392" } ], "type": { @@ -4788,7 +4788,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 391, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L391" } ], "type": { @@ -4834,7 +4834,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 390, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L390" } ], "type": { @@ -4855,7 +4855,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 389, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L389" } ] } @@ -4962,7 +4962,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "signatures": [ @@ -4996,7 +4996,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "typeParameters": [ @@ -5146,7 +5146,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 16, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L16" } ], "typeParameters": [ @@ -5211,7 +5211,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -5237,7 +5237,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -5265,7 +5265,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 22, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestClient.ts#L22" } ] } @@ -5539,7 +5539,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "signatures": [ @@ -5568,7 +5568,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "parameters": [ @@ -5598,7 +5598,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 73, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -5617,7 +5617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -5636,7 +5636,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -5655,7 +5655,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -5675,7 +5675,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ] } @@ -5713,7 +5713,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L9" } ], "type": { @@ -5732,7 +5732,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L7" } ], "type": { @@ -5751,7 +5751,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L8" } ], "type": { @@ -5770,7 +5770,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "signatures": [ @@ -5785,7 +5785,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5808,7 +5808,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5827,7 +5827,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5846,7 +5846,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 62, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5865,7 +5865,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5884,7 +5884,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ], "type": { @@ -5904,7 +5904,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L32" } ] } @@ -5932,7 +5932,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 6, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestError.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestError.ts#L6" } ], "extendedTypes": [ @@ -5965,7 +5965,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "signatures": [ @@ -6019,7 +6019,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "typeParameters": [ @@ -6148,7 +6148,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -6169,7 +6169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -6396,7 +6396,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -6422,7 +6422,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -6441,7 +6441,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -6483,7 +6483,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 128, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" } ], "type": { @@ -6504,7 +6504,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -6525,7 +6525,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" } ], "type": { @@ -6546,7 +6546,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -6567,7 +6567,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -6591,7 +6591,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -6617,7 +6617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -6637,7 +6637,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ] } @@ -6737,7 +6737,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -6764,7 +6764,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -6999,7 +6999,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -7031,7 +7031,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -7058,7 +7058,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -7106,7 +7106,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" } ], "type": { @@ -7135,7 +7135,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -7162,7 +7162,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" } ], "type": { @@ -7189,7 +7189,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -7218,7 +7218,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -7250,7 +7250,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -7282,7 +7282,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" } ], "type": { @@ -7308,7 +7308,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "signatures": [ @@ -7432,7 +7432,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "parameters": [ @@ -7677,19 +7677,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1119" } ], "signatures": [ @@ -7704,7 +7704,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L985" } ], "typeParameters": [ @@ -7812,7 +7812,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L989" } ], "parameters": [ @@ -8080,19 +8080,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L970" } ], "signatures": [ @@ -8107,7 +8107,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L837" } ], "typeParameters": [ @@ -8215,7 +8215,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L841" } ], "parameters": [ @@ -8297,7 +8297,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "signatures": [ @@ -8386,7 +8386,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "type": { @@ -8434,7 +8434,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" } ], "signatures": [ @@ -8552,7 +8552,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L157" } ], "typeParameters": [ @@ -8885,7 +8885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "signatures": [ @@ -9035,7 +9035,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "parameters": [ @@ -9091,7 +9091,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 850, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" } ], "type": { @@ -9129,7 +9129,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 853, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" } ], "type": { @@ -9171,7 +9171,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 855, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" } ], "type": { @@ -9218,7 +9218,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 852, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" } ], "type": { @@ -9264,7 +9264,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "type": { @@ -9302,7 +9302,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 854, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" } ], "type": { @@ -9323,7 +9323,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 849, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" } ] } @@ -9592,21 +9592,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1986, + "line": 1988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1986" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1988" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1991, + "line": 1993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1991" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1993" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 2104, + "line": 2106, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2106" } ], "signatures": [ @@ -9619,9 +9619,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1986, + "line": 1988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1986" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1988" } ], "typeParameters": [ @@ -9799,9 +9799,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1991, + "line": 1993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1991" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1993" } ], "parameters": [ @@ -9859,7 +9859,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "signatures": [ @@ -9903,7 +9903,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "type": { @@ -10094,19 +10094,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L289" } ], "signatures": [ @@ -10121,7 +10121,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L240" } ], "typeParameters": [ @@ -10194,7 +10194,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L241" } ], "parameters": [ @@ -10346,19 +10346,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 343, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L343" } ], "signatures": [ @@ -10373,7 +10373,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" } ], "typeParameters": [ @@ -10446,7 +10446,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" } ], "parameters": [ @@ -10598,19 +10598,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 583, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" } ], "signatures": [ @@ -10625,7 +10625,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L538" } ], "typeParameters": [ @@ -10684,7 +10684,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ], "parameters": [ @@ -10784,19 +10784,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 588, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 592, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 601, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" } ], "signatures": [ @@ -10811,7 +10811,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 588, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" } ], "typeParameters": [ @@ -10877,7 +10877,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 592, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L592" } ], "parameters": [ @@ -10984,19 +10984,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 610, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L619" } ], "signatures": [ @@ -11011,7 +11011,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606" } ], "typeParameters": [ @@ -11077,7 +11077,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 610, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L610" } ], "parameters": [ @@ -11129,7 +11129,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" } ], "signatures": [ @@ -11231,7 +11231,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L784" } ], "typeParameters": [ @@ -11597,19 +11597,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 656, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 710, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L710" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L710" } ], "signatures": [ @@ -11624,7 +11624,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 652, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652" } ], "typeParameters": [ @@ -11715,7 +11715,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 656, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L656" } ], "parameters": [ @@ -11769,7 +11769,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 725, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" } ], "signatures": [ @@ -11840,7 +11840,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 725, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L725" } ], "typeParameters": [ @@ -12126,19 +12126,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 497, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L497" } ], "signatures": [ @@ -12153,7 +12153,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L452" } ], "typeParameters": [ @@ -12212,7 +12212,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453" } ], "parameters": [ @@ -12312,19 +12312,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L515" } ], "signatures": [ @@ -12339,7 +12339,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L502" } ], "typeParameters": [ @@ -12405,7 +12405,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 506, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506" } ], "parameters": [ @@ -12512,19 +12512,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 533, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L533" } ], "signatures": [ @@ -12539,7 +12539,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" } ], "typeParameters": [ @@ -12605,7 +12605,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L524" } ], "parameters": [ @@ -12659,7 +12659,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "signatures": [ @@ -12791,7 +12791,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "parameters": [ @@ -12866,7 +12866,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -12895,7 +12895,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -12916,7 +12916,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ] } @@ -13059,19 +13059,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 393, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L393" } ], "signatures": [ @@ -13086,7 +13086,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L348" } ], "typeParameters": [ @@ -13159,7 +13159,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L349" } ], "parameters": [ @@ -13311,19 +13311,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 398, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 399, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L447" } ], "signatures": [ @@ -13338,7 +13338,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 398, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L398" } ], "typeParameters": [ @@ -13411,7 +13411,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 399, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L399" } ], "parameters": [ @@ -13553,19 +13553,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1727, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1727" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1727" } ], "signatures": [ @@ -13580,7 +13580,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1682" } ], "typeParameters": [ @@ -13657,7 +13657,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1683" } ], "parameters": [ @@ -13708,7 +13708,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "signatures": [ @@ -13744,7 +13744,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "parameters": [ @@ -13950,7 +13950,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "signatures": [ @@ -14054,7 +14054,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "typeParameters": [ @@ -14161,7 +14161,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" } ], "signatures": [ @@ -14263,7 +14263,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" } ], "typeParameters": [ @@ -14707,25 +14707,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1738, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1751, + "line": 1752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1752" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1756, + "line": 1757, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1757" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1815, + "line": 1816, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1816" } ], "signatures": [ @@ -14740,7 +14740,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1738, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1738" } ], "typeParameters": [ @@ -14795,58 +14795,137 @@ } ], "type": { - "type": "reference", - "target": 194, - "typeArguments": [ - { - "type": "reference", - "target": 197, - "name": "ClientOptions", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.ClientOptions", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 198, - "name": "Schema", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Schema", - "refersToTypeParameter": true - }, + "type": "intersection", + "types": [ { "type": "reference", - "target": { - "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "NonNullableColumn" - }, + "target": 194, "typeArguments": [ { "type": "reference", - "target": 199, - "name": "Row", + "target": 197, + "name": "ClientOptions", "package": "@supabase/postgrest-js", - "qualifiedName": "default.Row", + "qualifiedName": "default.ClientOptions", "refersToTypeParameter": true }, { "type": "reference", - "target": 443, - "name": "ColumnName", + "target": 198, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "NonNullableColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 199, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 443, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NonNullableColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "NarrowResultColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 200, + "name": "Result", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Result", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 443, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NarrowResultColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": 201, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 202, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 203, + "name": "Method", "package": "@supabase/postgrest-js", + "qualifiedName": "default.Method", "refersToTypeParameter": true } ], - "name": "NonNullableColumn", - "package": "@supabase/postgrest-js" + "name": "PostgrestFilterBuilder", + "package": "@supabase/postgrest-js", + "qualifiedName": "default" }, { "type": "reference", - "target": { - "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "NarrowResultColumn" - }, + "target": 194, "typeArguments": [ + { + "type": "reference", + "target": 197, + "name": "ClientOptions", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.ClientOptions", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 198, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 199, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, { "type": "reference", "target": 200, @@ -14857,43 +14936,34 @@ }, { "type": "reference", - "target": 443, - "name": "ColumnName", + "target": 201, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 202, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 203, + "name": "Method", "package": "@supabase/postgrest-js", + "qualifiedName": "default.Method", "refersToTypeParameter": true } ], - "name": "NarrowResultColumn", - "package": "@supabase/postgrest-js" - }, - { - "type": "reference", - "target": 201, - "name": "RelationName", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.RelationName", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 202, - "name": "Relationships", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Relationships", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 203, - "name": "Method", + "name": "PostgrestFilterBuilder", "package": "@supabase/postgrest-js", - "qualifiedName": "default.Method", - "refersToTypeParameter": true + "qualifiedName": "default" } - ], - "name": "PostgrestFilterBuilder", - "package": "@supabase/postgrest-js", - "qualifiedName": "default" + ] } }, { @@ -14905,9 +14975,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1751, + "line": 1752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1752" } ], "typeParameters": [ @@ -14994,9 +15064,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1756, + "line": 1757, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1756" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1757" } ], "parameters": [ @@ -15052,7 +15122,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" } ], "signatures": [ @@ -15091,7 +15161,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L815" } ], "typeParameters": [ @@ -15275,9 +15345,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1974, + "line": 1976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1974" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1976" } ], "signatures": [ @@ -15510,9 +15580,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1974, + "line": 1976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1974" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1976" } ], "parameters": [ @@ -15585,9 +15655,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1979, + "line": 1981, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1981" } ], "type": { @@ -15614,9 +15684,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1979, + "line": 1981, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1981" } ], "type": { @@ -15635,9 +15705,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 1979, + "line": 1981, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1981" } ] } @@ -15966,31 +16036,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" } ], "signatures": [ @@ -16007,7 +16077,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" } ], "typeParameters": [ @@ -16068,7 +16138,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -16089,7 +16159,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -16110,7 +16180,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -16130,7 +16200,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ] } @@ -16160,7 +16230,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" } ], "parameters": [ @@ -16205,7 +16275,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -16226,7 +16296,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -16247,7 +16317,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -16267,7 +16337,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ] } @@ -16323,7 +16393,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" } ], "typeParameters": [ @@ -16384,7 +16454,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -16405,7 +16475,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -16426,7 +16496,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -16446,7 +16516,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ] } @@ -16502,7 +16572,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" } ], "parameters": [ @@ -16547,7 +16617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -16568,7 +16638,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -16589,7 +16659,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -16609,7 +16679,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ] } @@ -16780,19 +16850,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1540, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1540" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1540" } ], "signatures": [ @@ -16807,7 +16877,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1444" } ], "typeParameters": [ @@ -16896,7 +16966,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1448" } ], "parameters": [ @@ -16959,7 +17029,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "signatures": [ @@ -17123,7 +17193,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "typeParameters": [ @@ -17178,7 +17248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -17198,7 +17268,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -17223,7 +17293,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -17243,7 +17313,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -17476,7 +17546,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "signatures": [ @@ -17604,7 +17674,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "parameters": [ @@ -17698,7 +17768,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -17727,7 +17797,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -17748,7 +17818,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ] } @@ -17908,19 +17978,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1383, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1439, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1439" } ], "signatures": [ @@ -17935,7 +18005,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1382" } ], "typeParameters": [ @@ -17994,7 +18064,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1383, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1383" } ], "parameters": [ @@ -18163,19 +18233,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1190" } ], "signatures": [ @@ -18190,7 +18260,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1133" } ], "typeParameters": [ @@ -18249,7 +18319,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1134" } ], "parameters": [ @@ -18426,19 +18496,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1253" } ], "signatures": [ @@ -18453,7 +18523,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1195" } ], "typeParameters": [ @@ -18512,7 +18582,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1196" } ], "parameters": [ @@ -18681,19 +18751,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1314, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1314" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1314" } ], "signatures": [ @@ -18708,7 +18778,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1258" } ], "typeParameters": [ @@ -18767,7 +18837,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1259" } ], "parameters": [ @@ -18944,19 +19014,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1377" } ], "signatures": [ @@ -18971,7 +19041,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1319" } ], "typeParameters": [ @@ -19030,7 +19100,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1320" } ], "parameters": [ @@ -19129,19 +19199,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 638, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 647, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L647" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L647" } ], "signatures": [ @@ -19156,7 +19226,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 638, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L638" } ], "typeParameters": [ @@ -19215,7 +19285,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" } ], "parameters": [ @@ -19314,19 +19384,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 633, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L633" } ], "signatures": [ @@ -19341,7 +19411,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "typeParameters": [ @@ -19400,7 +19470,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L625" } ], "parameters": [ @@ -19447,7 +19517,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "signatures": [ @@ -19487,7 +19557,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "parameters": [ @@ -19541,7 +19611,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "signatures": [ @@ -19649,7 +19719,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "typeParameters": [ @@ -19778,7 +19848,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "signatures": [ @@ -19822,7 +19892,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "type": { @@ -19855,7 +19925,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "signatures": [ @@ -19983,7 +20053,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "typeParameters": [ @@ -20234,7 +20304,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "signatures": [ @@ -20270,7 +20340,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "parameters": [ @@ -20327,7 +20397,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "signatures": [ @@ -20431,7 +20501,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "typeParameters": [ @@ -20531,7 +20601,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "signatures": [ @@ -20633,7 +20703,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "type": { @@ -20923,19 +20993,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1556, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1664, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1664" } ], "signatures": [ @@ -20950,7 +21020,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1551" } ], "typeParameters": [ @@ -21022,7 +21092,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1554, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" } ], "type": { @@ -21043,7 +21113,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1554, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" } ], "type": { @@ -21076,7 +21146,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1554, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1554" } ] } @@ -21099,7 +21169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1556, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1556" } ], "parameters": [ @@ -21155,7 +21225,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1559, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" } ], "type": { @@ -21176,7 +21246,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1559, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" } ], "type": { @@ -21209,7 +21279,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1559, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1559" } ] } @@ -21236,7 +21306,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "signatures": [ @@ -21272,7 +21342,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "typeParameters": [ @@ -21348,7 +21418,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "signatures": [ @@ -21363,7 +21433,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "parameters": [ @@ -21464,7 +21534,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "signatures": [ @@ -21479,7 +21549,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "parameters": [ @@ -21589,7 +21659,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "signatures": [ @@ -21631,7 +21701,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "type": { @@ -21790,7 +21860,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 95, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" } ], "typeParameters": [ @@ -21975,7 +22045,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "signatures": [ @@ -22029,7 +22099,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "typeParameters": [ @@ -22139,7 +22209,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -22165,7 +22235,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -22256,7 +22326,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "type": { @@ -22493,7 +22563,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 74, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" } ], "type": { @@ -22528,7 +22598,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 78, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" } ], "type": { @@ -22557,7 +22627,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" } ], "type": { @@ -22586,7 +22656,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 77, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" } ], "type": { @@ -22607,7 +22677,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 73, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" } ] } @@ -22679,7 +22749,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" } ], "type": { @@ -22906,7 +22976,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" } ], "type": { @@ -22948,7 +23018,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" } ], "type": { @@ -22969,7 +23039,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" } ], "type": { @@ -22990,7 +23060,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" } ], "type": { @@ -23014,7 +23084,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" } ], "type": { @@ -23038,7 +23108,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" } ], "type": { @@ -23057,7 +23127,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1749, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" } ], "signatures": [ @@ -23264,7 +23334,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1749, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1749" } ], "parameters": [ @@ -23344,7 +23414,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1752, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1752" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1752" } ], "type": { @@ -23377,7 +23447,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1751, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1751" } ] } @@ -23687,19 +23757,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1086, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" } ], "signatures": [ @@ -23714,7 +23784,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L940" } ], "typeParameters": [ @@ -23789,7 +23859,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 942, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" } ], "type": { @@ -23809,7 +23879,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 942, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L942" } ] } @@ -23886,7 +23956,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 946, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L946" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L946" } ], "type": { @@ -23919,7 +23989,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 945, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L945" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L945" } ] } @@ -24002,7 +24072,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L957" } ], "typeParameters": [ @@ -24079,7 +24149,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 959, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" } ], "type": { @@ -24099,7 +24169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 959, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L959" } ] } @@ -24177,7 +24247,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 963, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L963" } ], "type": { @@ -24211,7 +24281,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 964, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L964" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L964" } ], "type": { @@ -24231,7 +24301,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 962, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L962" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L962" } ] } @@ -24316,7 +24386,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 878, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" } ], "signatures": [ @@ -25033,7 +25103,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 878, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" } ], "typeParameters": [ @@ -25229,7 +25299,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 892, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L892" } ], "type": { @@ -25287,7 +25357,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 891, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L891" } ], "type": { @@ -25307,7 +25377,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 890, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L890" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L890" } ] } @@ -25398,7 +25468,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" } ], "signatures": [ @@ -25574,7 +25644,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1593" } ], "typeParameters": [ @@ -25657,7 +25727,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1595, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" } ], "type": { @@ -25677,7 +25747,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1595, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1595" } ] } @@ -25800,7 +25870,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1601, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1601" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1601" } ], "type": { @@ -25833,7 +25903,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1600, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1600" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1600" } ] } @@ -26336,19 +26406,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1391, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1391" } ], "signatures": [ @@ -26363,7 +26433,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1143" } ], "typeParameters": [ @@ -26438,7 +26508,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1145, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" } ], "type": { @@ -26458,7 +26528,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1145, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1145" } ] } @@ -26535,7 +26605,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1151" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1151" } ], "type": { @@ -26569,7 +26639,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1150, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1150" } ], "type": { @@ -26590,7 +26660,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1149, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1149" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1149" } ], "type": { @@ -26610,7 +26680,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1148, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1148" } ] } @@ -26693,7 +26763,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1162" } ], "typeParameters": [ @@ -26770,7 +26840,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1164, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" } ], "type": { @@ -26790,7 +26860,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1164, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1164" } ] } @@ -26868,7 +26938,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1170, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1170" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1170" } ], "type": { @@ -26902,7 +26972,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1171, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1171" } ], "type": { @@ -26923,7 +26993,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1169, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1169" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1169" } ], "type": { @@ -26944,7 +27014,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1168" } ], "type": { @@ -26964,7 +27034,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 1167, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1167" } ] } @@ -27068,7 +27138,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 12, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" } ], "typeParameters": [ @@ -27178,7 +27248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -27198,7 +27268,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -27239,7 +27309,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "signatures": [ @@ -27293,7 +27363,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "typeParameters": [ @@ -27422,7 +27492,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -27443,7 +27513,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -27670,7 +27740,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -27696,7 +27766,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -27715,7 +27785,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -27757,7 +27827,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 128, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" } ], "type": { @@ -27778,7 +27848,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -27799,7 +27869,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" } ], "type": { @@ -27820,7 +27890,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -27841,7 +27911,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -27865,7 +27935,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -27891,7 +27961,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -27911,7 +27981,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 115, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ] } @@ -28011,7 +28081,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -28038,7 +28108,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -28273,7 +28343,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -28305,7 +28375,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -28332,7 +28402,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -28380,7 +28450,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" } ], "type": { @@ -28409,7 +28479,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -28436,7 +28506,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" } ], "type": { @@ -28463,7 +28533,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -28492,7 +28562,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -28524,7 +28594,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -28556,7 +28626,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" } ], "type": { @@ -28580,7 +28650,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "signatures": [ @@ -28702,7 +28772,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L593" } ], "parameters": [ @@ -28749,7 +28819,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "signatures": [ @@ -28836,7 +28906,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L732" } ], "type": { @@ -28874,7 +28944,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "signatures": [ @@ -29022,7 +29092,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L842" } ], "parameters": [ @@ -29078,7 +29148,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 850, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L850" } ], "type": { @@ -29116,7 +29186,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 853, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L853" } ], "type": { @@ -29158,7 +29228,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 855, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L855" } ], "type": { @@ -29205,7 +29275,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 852, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L852" } ], "type": { @@ -29251,7 +29321,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "type": { @@ -29289,7 +29359,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 854, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L854" } ], "type": { @@ -29310,7 +29380,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 849, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L849" } ] } @@ -29405,7 +29475,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "signatures": [ @@ -29447,7 +29517,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 742, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L742" } ], "type": { @@ -29500,7 +29570,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "signatures": [ @@ -29630,7 +29700,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L445" } ], "parameters": [ @@ -29705,7 +29775,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -29734,7 +29804,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ], "type": { @@ -29755,7 +29825,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 450, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L450" } ] } @@ -29781,7 +29851,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "signatures": [ @@ -29815,7 +29885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 957, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L957" } ], "parameters": [ @@ -30009,7 +30079,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "signatures": [ @@ -30111,7 +30181,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L685" } ], "typeParameters": [ @@ -30509,31 +30579,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L320" } ], "signatures": [ @@ -30548,7 +30618,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L110" } ], "typeParameters": [ @@ -30609,7 +30679,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -30630,7 +30700,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -30651,7 +30721,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ], "type": { @@ -30671,7 +30741,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 112, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L112" } ] } @@ -30694,7 +30764,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114" } ], "parameters": [ @@ -30739,7 +30809,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -30760,7 +30830,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -30781,7 +30851,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ], "type": { @@ -30801,7 +30871,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 116, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L116" } ] } @@ -30850,7 +30920,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L121" } ], "typeParameters": [ @@ -30911,7 +30981,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -30932,7 +31002,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -30953,7 +31023,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ], "type": { @@ -30973,7 +31043,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 123, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L123" } ] } @@ -31022,7 +31092,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L128" } ], "parameters": [ @@ -31067,7 +31137,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -31088,7 +31158,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -31109,7 +31179,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ], "type": { @@ -31129,7 +31199,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 130, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L130" } ] } @@ -31156,7 +31226,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "signatures": [ @@ -31320,7 +31390,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 658, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L658" } ], "typeParameters": [ @@ -31375,7 +31445,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -31395,7 +31465,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -31420,7 +31490,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ], "type": { @@ -31440,7 +31510,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 660, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L660" } ] } @@ -31671,7 +31741,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "signatures": [ @@ -31797,7 +31867,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 511, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L511" } ], "parameters": [ @@ -31891,7 +31961,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -31920,7 +31990,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ], "type": { @@ -31941,7 +32011,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 517, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L517" } ] } @@ -31969,7 +32039,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "signatures": [ @@ -32009,7 +32079,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L250" } ], "parameters": [ @@ -32061,7 +32131,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "signatures": [ @@ -32167,7 +32237,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 929, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L929" } ], "typeParameters": [ @@ -32294,7 +32364,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "signatures": [ @@ -32336,7 +32406,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L886" } ], "type": { @@ -32357,7 +32427,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "signatures": [ @@ -32483,7 +32553,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L61" } ], "typeParameters": [ @@ -32724,7 +32794,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "signatures": [ @@ -32760,7 +32830,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L224" } ], "parameters": [ @@ -32815,7 +32885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "signatures": [ @@ -32917,7 +32987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L639" } ], "typeParameters": [ @@ -33007,7 +33077,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "signatures": [ @@ -33109,7 +33179,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L211" } ], "type": { @@ -33142,7 +33212,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "signatures": [ @@ -33178,7 +33248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L255" } ], "typeParameters": [ @@ -33254,7 +33324,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "signatures": [ @@ -33269,7 +33339,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 262, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L262" } ], "parameters": [ @@ -33370,7 +33440,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "signatures": [ @@ -33385,7 +33455,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 269, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L269" } ], "parameters": [ @@ -33495,7 +33565,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "signatures": [ @@ -33537,7 +33607,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" } ], "type": { @@ -33691,7 +33761,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" } ], "typeParameters": [ @@ -33843,7 +33913,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L25" } ], "type": { @@ -33862,7 +33932,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L24" } ], "type": { @@ -33881,7 +33951,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L23" } ], "type": { @@ -33905,7 +33975,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -33931,7 +34001,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -33955,7 +34025,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L22" } ], "type": { @@ -33975,7 +34045,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 21, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L21" } ], "extendedTypes": [ @@ -34008,7 +34078,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L19" } ], "type": { @@ -34036,7 +34106,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L18" } ], "type": { @@ -34059,7 +34129,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L17" } ], "type": { @@ -34080,7 +34150,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -34106,7 +34176,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -34130,7 +34200,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L16" } ], "type": { @@ -34150,7 +34220,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 15, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L15" } ], "typeParameters": [ @@ -34185,7 +34255,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/common/common.ts#L81" } ], "type": { @@ -34210,7 +34280,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/common/common.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/common/common.ts#L82" } ], "type": { @@ -34230,7 +34300,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/common/common.ts#L81" } ] } @@ -34247,7 +34317,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L32" } ], "typeParameters": [ @@ -34295,7 +34365,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 33, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L33" } ], "typeParameters": [ @@ -34337,7 +34407,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/types/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/types/types.ts#L31" } ], "typeParameters": [ @@ -34395,7 +34465,7 @@ "fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" } ], "typeParameters": [ @@ -34980,7 +35050,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L16" } ], "type": { @@ -35003,7 +35073,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L21" } ], "type": { @@ -35027,7 +35097,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L17" } ], "type": { @@ -35051,7 +35121,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L22" } ], "type": { @@ -35075,7 +35145,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L19" } ], "type": { @@ -35099,7 +35169,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L18" } ], "type": { @@ -35123,7 +35193,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/postgrest-js/src/index.ts#L20" } ], "type": { @@ -35148,7 +35218,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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 337d610830ec5..ffe8e41128b50 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/realtime.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/realtime.json @@ -21,9 +21,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 137, + "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L138" } ], "type": { @@ -40,9 +40,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 139, + "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L140" } ], "type": { @@ -59,9 +59,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 138, + "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L139" } ], "type": { @@ -78,9 +78,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 140, + "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L141" } ], "type": { @@ -98,9 +98,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 136, + "line": 137, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L137" } ] }, @@ -120,9 +120,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 130, + "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L131" } ], "type": { @@ -139,9 +139,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 133, + "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L134" } ], "type": { @@ -158,9 +158,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 131, + "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L132" } ], "type": { @@ -177,9 +177,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 132, + "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L133" } ], "type": { @@ -197,9 +197,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 129, + "line": 130, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L31" } ] }, @@ -299,9 +299,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 147, + "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L148" } ], "type": { @@ -318,9 +318,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 146, + "line": 147, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L147" } ], "type": { @@ -337,9 +337,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 144, + "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L145" } ], "type": { @@ -356,9 +356,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 145, + "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L146" } ], "type": { @@ -376,9 +376,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 143, + "line": 144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L144" } ] }, @@ -406,9 +406,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 237, + "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "signatures": [ @@ -460,9 +460,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 237, + "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "parameters": [ @@ -533,9 +533,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 176, + "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L177" } ], "type": { @@ -576,9 +576,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 178, + "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L179" } ], "type": { @@ -597,9 +597,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 240, + "line": 241, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L241" } ], "type": { @@ -619,9 +619,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 180, + "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L181" } ], "type": { @@ -641,9 +641,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 179, + "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L180" } ], "type": { @@ -662,9 +662,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 241, + "line": 242, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L242" } ], "type": { @@ -684,9 +684,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 177, + "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L178" } ], "type": { @@ -713,9 +713,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 239, + "line": 240, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L240" } ], "type": { @@ -732,9 +732,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 192, + "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "getSignature": { @@ -746,9 +746,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 192, + "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "type": { @@ -766,9 +766,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 200, + "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "getSignature": { @@ -780,9 +780,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 200, + "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "type": { @@ -806,9 +806,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 204, + "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "getSignature": { @@ -820,9 +820,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 204, + "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "type": { @@ -846,15 +846,15 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 184, + "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L185" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 188, + "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "getSignature": { @@ -866,9 +866,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 184, + "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L185" } ], "type": { @@ -890,9 +890,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 188, + "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "parameters": [ @@ -928,9 +928,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 196, + "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "getSignature": { @@ -942,9 +942,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 196, + "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "type": { @@ -962,9 +962,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1077, + "line": 1076, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L1077" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L1076" } ], "signatures": [ @@ -977,9 +977,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1077, + "line": 1076, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L1077" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L1076" } ], "parameters": [ @@ -1014,9 +1014,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 747, + "line": 746, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L747" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L746" } ], "signatures": [ @@ -1057,9 +1057,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 747, + "line": 746, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L747" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L746" } ], "parameters": [ @@ -1135,9 +1135,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 749, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L749" } ], "type": { @@ -1155,9 +1155,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 749, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L749" } ] } @@ -1193,9 +1193,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -1213,9 +1213,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ] } @@ -1238,9 +1238,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -1257,9 +1257,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -1276,9 +1276,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -1296,9 +1296,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ] } @@ -1551,105 +1551,105 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 439, + "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L438" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 490, + "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L489" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 516, + "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L515" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 716, + "line": 715, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L715" } ], "signatures": [ @@ -1670,9 +1670,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 439, + "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L438" } ], "parameters": [ @@ -1711,9 +1711,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 440, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "type": { @@ -1731,9 +1731,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 440, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ] } @@ -1756,9 +1756,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 442, + "line": 441, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L441" } ], "signatures": [ @@ -1771,9 +1771,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 442, + "line": 441, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L441" } ], "type": { @@ -1811,9 +1811,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" } ], "typeParameters": [ @@ -1834,9 +1834,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" } ], "indexSignatures": [ @@ -1849,9 +1849,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" } ], "parameters": [ @@ -1913,9 +1913,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 445, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L445" } ], "type": { @@ -1933,9 +1933,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 445, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L445" } ] } @@ -1958,9 +1958,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 447, + "line": 446, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L446" } ], "signatures": [ @@ -1973,9 +1973,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 447, + "line": 446, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L446" } ], "parameters": [ @@ -2037,9 +2037,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" } ], "typeParameters": [ @@ -2060,9 +2060,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" } ], "indexSignatures": [ @@ -2075,9 +2075,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" } ], "parameters": [ @@ -2139,9 +2139,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 450, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L450" } ], "type": { @@ -2159,9 +2159,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 450, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L450" } ] } @@ -2184,9 +2184,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 452, + "line": 451, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L451" } ], "signatures": [ @@ -2199,9 +2199,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 452, + "line": 451, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L451" } ], "parameters": [ @@ -2263,9 +2263,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "typeParameters": [ @@ -2286,9 +2286,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "indexSignatures": [ @@ -2301,9 +2301,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "parameters": [ @@ -2365,9 +2365,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 455, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ], "type": { @@ -2385,9 +2385,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 455, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ] } @@ -2410,9 +2410,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 457, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "signatures": [ @@ -2425,9 +2425,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 457, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "parameters": [ @@ -2511,9 +2511,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "typeParameters": [ @@ -2534,9 +2534,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "indexSignatures": [ @@ -2549,9 +2549,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "parameters": [ @@ -2625,9 +2625,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 462, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "signatures": [ @@ -2640,9 +2640,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 462, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "parameters": [ @@ -2704,9 +2704,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "typeParameters": [ @@ -2727,9 +2727,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "indexSignatures": [ @@ -2742,9 +2742,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "parameters": [ @@ -2818,9 +2818,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 467, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "signatures": [ @@ -2833,9 +2833,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 467, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "parameters": [ @@ -2897,9 +2897,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "typeParameters": [ @@ -2920,9 +2920,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "indexSignatures": [ @@ -2935,9 +2935,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "parameters": [ @@ -3011,9 +3011,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 472, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "signatures": [ @@ -3026,9 +3026,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 472, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "parameters": [ @@ -3090,9 +3090,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "typeParameters": [ @@ -3113,9 +3113,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "indexSignatures": [ @@ -3128,9 +3128,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "parameters": [ @@ -3204,9 +3204,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 477, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "signatures": [ @@ -3219,9 +3219,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 477, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "parameters": [ @@ -3283,9 +3283,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "typeParameters": [ @@ -3306,9 +3306,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "indexSignatures": [ @@ -3321,9 +3321,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "parameters": [ @@ -3414,9 +3414,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 482, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "signatures": [ @@ -3429,9 +3429,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 482, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "parameters": [ @@ -3493,9 +3493,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 490, + "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L489" } ], "parameters": [ @@ -3550,9 +3550,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 491, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ], "type": { @@ -3570,9 +3570,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 491, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ] } @@ -3603,9 +3603,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 492, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "signatures": [ @@ -3618,9 +3618,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 492, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "parameters": [ @@ -3648,9 +3648,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 495, + "line": 494, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L494" } ], "type": { @@ -3669,9 +3669,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 496, + "line": 495, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L495" } ], "type": { @@ -3692,9 +3692,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 498, + "line": 497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L497" } ], "type": { @@ -3713,9 +3713,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 497, + "line": 496, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "type": { @@ -3733,9 +3733,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 496, + "line": 495, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L495" } ] } @@ -3750,9 +3750,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 494, + "line": 493, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "type": { @@ -3770,9 +3770,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 492, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "indexSignatures": [ @@ -3785,9 +3785,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 500, + "line": 499, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L499" } ], "parameters": [ @@ -3848,9 +3848,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" } ], "typeParameters": [ @@ -3871,9 +3871,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" } ], "indexSignatures": [ @@ -3886,9 +3886,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" } ], "parameters": [ @@ -3950,9 +3950,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 504, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ], "type": { @@ -3970,9 +3970,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 504, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ] } @@ -3995,9 +3995,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 505, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ], "signatures": [ @@ -4010,9 +4010,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 505, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ], "parameters": [ @@ -4040,9 +4040,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 508, + "line": 507, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "type": { @@ -4061,9 +4061,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 509, + "line": 508, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L508" } ], "type": { @@ -4084,9 +4084,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 511, + "line": 510, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ], "type": { @@ -4105,9 +4105,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 510, + "line": 509, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L509" } ], "type": { @@ -4125,9 +4125,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 509, + "line": 508, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L508" } ] } @@ -4142,9 +4142,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 513, + "line": 512, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L512" } ], "type": { @@ -4164,9 +4164,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 507, + "line": 506, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ], "type": { @@ -4184,9 +4184,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 505, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ] } @@ -4228,9 +4228,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 516, + "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L515" } ], "typeParameters": [ @@ -4297,9 +4297,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 517, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "type": { @@ -4320,9 +4320,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 517, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ] } @@ -4345,9 +4345,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 518, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L518" } ], "signatures": [ @@ -4360,9 +4360,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 518, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L518" } ], "parameters": [ @@ -4390,9 +4390,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 521, + "line": 520, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ], "type": { @@ -4412,9 +4412,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 522, + "line": 521, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L521" } ], "type": { @@ -4445,9 +4445,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 520, + "line": 519, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ], "type": { @@ -4465,9 +4465,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 518, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L518" } ] } @@ -4509,9 +4509,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "typeParameters": [ @@ -4532,9 +4532,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "indexSignatures": [ @@ -4547,9 +4547,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "parameters": [ @@ -4611,9 +4611,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 526, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L526" } ], "type": { @@ -4634,9 +4634,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 526, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L526" } ] } @@ -4659,9 +4659,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 527, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ], "signatures": [ @@ -4674,9 +4674,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 527, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ], "parameters": [ @@ -4704,9 +4704,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 530, + "line": 529, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L529" } ], "type": { @@ -4726,9 +4726,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 531, + "line": 530, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L530" } ], "type": { @@ -4759,9 +4759,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 529, + "line": 528, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L528" } ], "type": { @@ -4779,9 +4779,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 527, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ] } @@ -4823,9 +4823,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "typeParameters": [ @@ -4846,9 +4846,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "indexSignatures": [ @@ -4861,9 +4861,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "parameters": [ @@ -4925,9 +4925,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 535, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L535" } ], "type": { @@ -4948,9 +4948,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 535, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L535" } ] } @@ -4973,9 +4973,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 536, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ], "signatures": [ @@ -4988,9 +4988,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 536, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ], "parameters": [ @@ -5018,9 +5018,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 539, + "line": 538, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L538" } ], "type": { @@ -5040,9 +5040,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 540, + "line": 539, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "type": { @@ -5073,9 +5073,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 538, + "line": 537, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L537" } ], "type": { @@ -5093,9 +5093,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 536, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ] } @@ -5137,9 +5137,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "typeParameters": [ @@ -5160,9 +5160,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "indexSignatures": [ @@ -5175,9 +5175,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "parameters": [ @@ -5239,9 +5239,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 544, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L544" } ], "type": { @@ -5262,9 +5262,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 544, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L544" } ] } @@ -5287,9 +5287,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 545, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ], "signatures": [ @@ -5302,9 +5302,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 545, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ], "parameters": [ @@ -5332,9 +5332,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 548, + "line": 547, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L547" } ], "type": { @@ -5354,9 +5354,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 549, + "line": 548, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "type": { @@ -5387,9 +5387,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 547, + "line": 546, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L546" } ], "type": { @@ -5407,9 +5407,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 545, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ] } @@ -5451,9 +5451,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "typeParameters": [ @@ -5474,9 +5474,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "indexSignatures": [ @@ -5489,9 +5489,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "parameters": [ @@ -5563,9 +5563,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 555, + "line": 554, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L554" } ], "signatures": [ @@ -5578,9 +5578,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 555, + "line": 554, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L554" } ], "parameters": [ @@ -5625,9 +5625,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "signatures": [ @@ -5659,9 +5659,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "typeParameters": [ @@ -5682,9 +5682,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "indexSignatures": [ @@ -5697,9 +5697,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "parameters": [ @@ -5762,9 +5762,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 841, + "line": 840, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L840" } ], "signatures": [ @@ -5838,9 +5838,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 841, + "line": 840, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L840" } ], "parameters": [ @@ -5884,9 +5884,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 844, + "line": 843, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L844" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L843" } ], "type": { @@ -5913,9 +5913,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 845, + "line": 844, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L845" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L844" } ], "type": { @@ -5940,9 +5940,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 843, + "line": 842, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L842" } ], "type": { @@ -5973,9 +5973,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 842, + "line": 841, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L841" } ], "indexSignatures": [ @@ -5988,9 +5988,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 846, + "line": 845, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L845" } ], "parameters": [ @@ -6040,9 +6040,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 848, + "line": 847, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L847" } ], "indexSignatures": [ @@ -6055,9 +6055,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 848, + "line": 847, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L847" } ], "parameters": [ @@ -6113,9 +6113,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 276, + "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L277" } ], "signatures": [ @@ -6147,9 +6147,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 276, + "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L277" } ], "parameters": [ @@ -6172,9 +6172,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 278, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L278" } ], "signatures": [ @@ -6187,9 +6187,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 278, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L278" } ], "parameters": [ @@ -6266,9 +6266,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 949, + "line": 948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L948" } ], "signatures": [ @@ -6300,9 +6300,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 949, + "line": 948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L948" } ], "type": { @@ -6321,9 +6321,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L406" } ], "signatures": [ @@ -6363,9 +6363,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L406" } ], "parameters": [ @@ -6386,9 +6386,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 407, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L407" } ], "indexSignatures": [ @@ -6401,9 +6401,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 407, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L407" } ], "parameters": [ @@ -6445,9 +6445,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 409, + "line": 408, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L408" } ], "indexSignatures": [ @@ -6460,9 +6460,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 409, + "line": 408, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L408" } ], "parameters": [ @@ -6518,9 +6518,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 934, + "line": 933, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L933" } ], "signatures": [ @@ -6560,9 +6560,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 934, + "line": 933, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L933" } ], "parameters": [ @@ -6608,9 +6608,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "signatures": [ @@ -6642,9 +6642,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "parameters": [ @@ -6665,9 +6665,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "indexSignatures": [ @@ -6680,9 +6680,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "parameters": [ @@ -6738,9 +6738,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 919, + "line": 918, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L919" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L918" } ], "signatures": [ @@ -6772,9 +6772,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 919, + "line": 918, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L919" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L918" } ], "parameters": [ @@ -6844,9 +6844,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 175, + "line": 176, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L176" } ] }, @@ -6868,7 +6868,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L235" } ], "signatures": [ @@ -6922,7 +6922,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L235" } ], "parameters": [ @@ -7076,7 +7076,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L99" } ], "type": { @@ -7099,7 +7099,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 99, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L99" } ], "signatures": [ @@ -7114,7 +7114,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 99, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L99" } ], "type": { @@ -7160,7 +7160,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L98" } ], "type": { @@ -7189,7 +7189,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L100" } ], "type": { @@ -7218,7 +7218,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L96" } ], "type": { @@ -7244,7 +7244,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L111" } ], "type": { @@ -7487,7 +7487,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "type": { @@ -7503,7 +7503,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "indexSignatures": [ @@ -7518,7 +7518,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "parameters": [ @@ -7555,7 +7555,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L102" } ], "type": { @@ -7577,7 +7577,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L109" } ], "type": { @@ -7603,7 +7603,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "type": { @@ -7619,7 +7619,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "indexSignatures": [ @@ -7634,7 +7634,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "parameters": [ @@ -7671,7 +7671,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L107" } ], "type": { @@ -7691,7 +7691,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 116, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L116" } ], "type": { @@ -7719,7 +7719,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L112" } ], "type": { @@ -7740,7 +7740,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L114" } ], "type": { @@ -7766,7 +7766,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L113" } ], "type": { @@ -7785,7 +7785,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "getSignature": { @@ -7799,7 +7799,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "type": { @@ -7830,7 +7830,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "getSignature": { @@ -7844,7 +7844,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "type": { @@ -7875,7 +7875,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 118, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L118" } ], "getSignature": { @@ -7889,7 +7889,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 118, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L118" } ], "type": { @@ -7909,7 +7909,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L130" } ], "getSignature": { @@ -7923,7 +7923,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L130" } ], "type": { @@ -7948,7 +7948,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L134" } ], "getSignature": { @@ -7962,7 +7962,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L134" } ], "type": { @@ -7982,7 +7982,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 138, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L138" } ], "getSignature": { @@ -7996,7 +7996,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 138, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L138" } ], "type": { @@ -8021,7 +8021,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 145, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L145" } ], "getSignature": { @@ -8035,7 +8035,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 145, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L145" } ], "type": { @@ -8064,7 +8064,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "getSignature": { @@ -8078,7 +8078,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "type": { @@ -8094,7 +8094,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "signatures": [ @@ -8109,7 +8109,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "parameters": [ @@ -8146,7 +8146,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L152" } ], "getSignature": { @@ -8160,7 +8160,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L152" } ], "type": { @@ -8186,7 +8186,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "getSignature": { @@ -8200,7 +8200,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "type": { @@ -8218,7 +8218,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "signatures": [ @@ -8233,7 +8233,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "type": { @@ -8258,7 +8258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "getSignature": { @@ -8272,7 +8272,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "type": { @@ -8295,7 +8295,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 178, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L178" } ], "type": { @@ -8331,7 +8331,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 179, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L179" } ], "type": { @@ -8367,7 +8367,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 180, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L180" } ], "type": { @@ -8403,7 +8403,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 177, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L177" } ], "type": { @@ -8440,7 +8440,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ] } @@ -8458,7 +8458,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L122" } ], "getSignature": { @@ -8472,7 +8472,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L122" } ], "type": { @@ -8492,7 +8492,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 126, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L126" } ], "getSignature": { @@ -8506,7 +8506,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 126, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L126" } ], "type": { @@ -8528,7 +8528,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 156, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L156" } ], "getSignature": { @@ -8542,7 +8542,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 156, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L156" } ], "type": { @@ -8567,7 +8567,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L427" } ], "signatures": [ @@ -8619,7 +8619,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L427" } ], "parameters": [ @@ -8670,7 +8670,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L255" } ], "signatures": [ @@ -8704,7 +8704,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L255" } ], "type": { @@ -8725,7 +8725,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L387" } ], "signatures": [ @@ -8759,7 +8759,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L387" } ], "type": { @@ -8785,7 +8785,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L314" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L314" } ], "signatures": [ @@ -8819,7 +8819,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L314" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L314" } ], "parameters": [ @@ -8904,7 +8904,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L302" } ], "signatures": [ @@ -8947,7 +8947,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L302" } ], "type": { @@ -8968,7 +8968,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 334, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L334" } ], "signatures": [ @@ -9002,7 +9002,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 334, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L334" } ], "type": { @@ -9029,7 +9029,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L396" } ], "signatures": [ @@ -9071,7 +9071,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L396" } ], "type": { @@ -9092,7 +9092,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L405" } ], "signatures": [ @@ -9134,7 +9134,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L405" } ], "type": { @@ -9155,7 +9155,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L414" } ], "signatures": [ @@ -9197,7 +9197,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L414" } ], "type": { @@ -9218,7 +9218,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L378" } ], "signatures": [ @@ -9260,7 +9260,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L378" } ], "parameters": [ @@ -9318,7 +9318,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L508" } ], "signatures": [ @@ -9352,7 +9352,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L508" } ], "parameters": [ @@ -9391,7 +9391,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L449" } ], "signatures": [ @@ -9425,7 +9425,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L449" } ], "parameters": [ @@ -9461,7 +9461,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 359, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L359" } ], "signatures": [ @@ -9495,7 +9495,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 359, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L359" } ], "type": { @@ -9532,7 +9532,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "signatures": [ @@ -9566,7 +9566,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "parameters": [ @@ -9624,7 +9624,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 498, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L498" } ], "signatures": [ @@ -9658,7 +9658,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 498, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L498" } ], "type": { @@ -9690,7 +9690,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 475, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L475" } ], "signatures": [ @@ -9757,7 +9757,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 475, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L475" } ], "parameters": [ @@ -9850,7 +9850,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 93, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L93" } ] }, @@ -9872,7 +9872,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "signatures": [ @@ -9916,7 +9916,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "parameters": [ @@ -10008,7 +10008,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 66, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L66" } ], "type": { @@ -10030,7 +10030,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "getSignature": { @@ -10044,7 +10044,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "type": { @@ -10085,7 +10085,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 41, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L41" } ] }, @@ -10118,7 +10118,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 153, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" } ], "signatures": [ @@ -10162,7 +10162,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 153, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" } ], "type": { @@ -10276,7 +10276,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 178, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" } ], "signatures": [ @@ -10320,7 +10320,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 178, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" } ], "type": { @@ -10348,7 +10348,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 50, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" } ] }, @@ -10372,7 +10372,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" } ], "type": { @@ -10393,7 +10393,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" } ], "type": { @@ -10414,7 +10414,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" } ], "type": { @@ -10435,7 +10435,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 4, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" } ], "type": { @@ -10456,7 +10456,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 2, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" } ], "type": { @@ -10477,7 +10477,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "type": { @@ -10493,7 +10493,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "signatures": [ @@ -10508,7 +10508,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "parameters": [ @@ -10551,7 +10551,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" } ], "type": { @@ -10570,7 +10570,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "type": { @@ -10593,7 +10593,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "signatures": [ @@ -10608,7 +10608,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "parameters": [ @@ -10662,7 +10662,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "type": { @@ -10685,7 +10685,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "signatures": [ @@ -10700,7 +10700,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "parameters": [ @@ -10754,7 +10754,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "type": { @@ -10777,7 +10777,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "signatures": [ @@ -10792,7 +10792,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "parameters": [ @@ -10846,7 +10846,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "type": { @@ -10869,7 +10869,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "signatures": [ @@ -10884,7 +10884,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "parameters": [ @@ -10940,7 +10940,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 3, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" } ], "type": { @@ -10961,7 +10961,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 8, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" } ], "type": { @@ -10982,7 +10982,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" } ], "type": { @@ -11003,7 +11003,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 7, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" } ], "type": { @@ -11022,7 +11022,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "signatures": [ @@ -11045,7 +11045,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "parameters": [ @@ -11095,7 +11095,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "signatures": [ @@ -11118,7 +11118,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "parameters": [ @@ -11167,7 +11167,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "signatures": [ @@ -11190,7 +11190,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "parameters": [ @@ -11240,7 +11240,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "signatures": [ @@ -11263,7 +11263,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "parameters": [ @@ -11345,7 +11345,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 1, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" } ] }, @@ -11383,7 +11383,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "signatures": [ @@ -11398,7 +11398,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L59" } ], "parameters": [ @@ -11474,7 +11474,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "indexSignatures": [ @@ -11489,7 +11489,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L61" } ], "parameters": [ @@ -11521,9 +11521,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 21, + "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ], "type": { @@ -11544,9 +11544,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 22, + "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ], "type": { @@ -11577,9 +11577,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11602,9 +11602,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11623,9 +11623,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11649,9 +11649,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11669,9 +11669,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ] } @@ -11696,9 +11696,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11721,9 +11721,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11742,9 +11742,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11762,9 +11762,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ] } @@ -11789,9 +11789,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 36, + "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L37" } ], "type": { @@ -11809,9 +11809,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 22, + "line": 23, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ] } @@ -11827,9 +11827,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 21, + "line": 22, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ] } @@ -11844,9 +11844,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 127, + "line": 128, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ], "type": { @@ -11878,7 +11878,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ], "type": { @@ -11903,7 +11903,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "type": { @@ -11919,7 +11919,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "signatures": [ @@ -11971,7 +11971,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L72" } ], "type": { @@ -12003,7 +12003,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L83" } ], "type": { @@ -12024,7 +12024,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L71" } ], "type": { @@ -12056,7 +12056,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L79" } ], "type": { @@ -12082,7 +12082,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "type": { @@ -12098,7 +12098,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "indexSignatures": [ @@ -12113,7 +12113,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "parameters": [ @@ -12151,7 +12151,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "type": { @@ -12167,7 +12167,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "signatures": [ @@ -12230,7 +12230,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L67" } ], "type": { @@ -12251,7 +12251,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L77" } ], "type": { @@ -12277,7 +12277,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "type": { @@ -12293,7 +12293,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "signatures": [ @@ -12362,7 +12362,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L78" } ], "type": { @@ -12388,7 +12388,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "type": { @@ -12404,7 +12404,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "indexSignatures": [ @@ -12419,7 +12419,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "parameters": [ @@ -12457,7 +12457,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "type": { @@ -12473,7 +12473,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "signatures": [ @@ -12518,7 +12518,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L66" } ], "type": { @@ -12539,7 +12539,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L65" } ], "type": { @@ -12562,7 +12562,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L69" } ], "type": { @@ -12583,7 +12583,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L80" } ], "type": { @@ -12604,7 +12604,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L81" } ], "type": { @@ -12627,7 +12627,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ] } @@ -12644,7 +12644,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ], "type": { @@ -12667,7 +12667,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L34" } ], "type": { @@ -12688,7 +12688,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L37" } ], "type": { @@ -12707,7 +12707,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L35" } ], "type": { @@ -12726,7 +12726,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L36" } ], "type": { @@ -12745,7 +12745,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L33" } ], "type": { @@ -12765,7 +12765,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ] } @@ -12780,9 +12780,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 108, + "line": 109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ], "typeParameters": [ @@ -12835,9 +12835,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 112, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L113" } ], "type": { @@ -12867,9 +12867,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 124, + "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L125" } ], "type": { @@ -12894,9 +12894,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 116, + "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L117" } ], "type": { @@ -12923,9 +12923,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 120, + "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L121" } ], "type": { @@ -12943,9 +12943,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 108, + "line": 109, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ] } @@ -12960,9 +12960,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 103, + "line": 104, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "typeParameters": [ @@ -12983,9 +12983,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 103, + "line": 104, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "indexSignatures": [ @@ -12998,9 +12998,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 103, + "line": 104, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "parameters": [ @@ -13086,9 +13086,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 96, + "line": 97, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "typeParameters": [ @@ -13109,9 +13109,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 96, + "line": 97, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "indexSignatures": [ @@ -13124,9 +13124,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 96, + "line": 97, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "parameters": [ @@ -13182,9 +13182,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 98, + "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L99" } ], "type": { @@ -13212,9 +13212,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 99, + "line": 100, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ], "type": { @@ -13228,9 +13228,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 99, + "line": 100, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ] } @@ -13245,9 +13245,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 100, + "line": 101, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L101" } ], "type": { @@ -13279,9 +13279,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 97, + "line": 98, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L98" } ] } @@ -13298,9 +13298,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 82, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "typeParameters": [ @@ -13321,9 +13321,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 82, + "line": 83, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "indexSignatures": [ @@ -13336,9 +13336,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 82, + "line": 83, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "parameters": [ @@ -13394,9 +13394,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 84, + "line": 85, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L85" } ], "type": { @@ -13424,9 +13424,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 85, + "line": 86, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L86" } ], "type": { @@ -13446,9 +13446,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 86, + "line": 87, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ], "type": { @@ -13462,9 +13462,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 86, + "line": 87, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ] } @@ -13480,9 +13480,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 83, + "line": 84, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L84" } ] } @@ -13499,9 +13499,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 89, + "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "typeParameters": [ @@ -13522,9 +13522,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 89, + "line": 90, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "indexSignatures": [ @@ -13537,9 +13537,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 89, + "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "parameters": [ @@ -13595,9 +13595,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 91, + "line": 92, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L92" } ], "type": { @@ -13625,9 +13625,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 92, + "line": 93, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L93" } ], "type": { @@ -13647,9 +13647,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 93, + "line": 94, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L94" } ], "type": { @@ -13681,9 +13681,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 90, + "line": 91, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L91" } ] } @@ -13702,7 +13702,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "typeParameters": [ @@ -13725,7 +13725,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "indexSignatures": [ @@ -13740,7 +13740,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "parameters": [ @@ -13786,7 +13786,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L20" } ], "type": { @@ -13822,7 +13822,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L18" } ], "type": { @@ -13852,7 +13852,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L19" } ], "type": { @@ -13871,7 +13871,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L21" } ], "type": { @@ -13908,7 +13908,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ] } @@ -13925,7 +13925,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "typeParameters": [ @@ -13948,7 +13948,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "indexSignatures": [ @@ -13963,7 +13963,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "parameters": [ @@ -14009,7 +14009,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L27" } ], "type": { @@ -14045,7 +14045,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L25" } ], "type": { @@ -14075,7 +14075,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L26" } ], "type": { @@ -14094,7 +14094,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L28" } ], "type": { @@ -14131,7 +14131,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 77, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ] } @@ -14148,7 +14148,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "typeParameters": [ @@ -14171,7 +14171,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -14186,7 +14186,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "parameters": [ @@ -14223,7 +14223,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ] } @@ -14243,7 +14243,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 75, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -14258,7 +14258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L14" } ], "parameters": [ @@ -14311,7 +14311,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 40, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L40" } ], "type": { @@ -14343,9 +14343,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 150, + "line": 151, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L151" } ], "type": { @@ -14370,7 +14370,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L33" } ], "type": { @@ -14392,7 +14392,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L34" } ], "type": { @@ -14414,7 +14414,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L35" } ], "type": { @@ -14436,7 +14436,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L36" } ], "type": { @@ -14458,7 +14458,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L37" } ], "type": { @@ -14479,7 +14479,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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 337d610830ec5..ffe8e41128b50 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json @@ -21,9 +21,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 137, + "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L138" } ], "type": { @@ -40,9 +40,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 139, + "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L140" } ], "type": { @@ -59,9 +59,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 138, + "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L139" } ], "type": { @@ -78,9 +78,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 140, + "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L141" } ], "type": { @@ -98,9 +98,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 136, + "line": 137, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L137" } ] }, @@ -120,9 +120,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 130, + "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L131" } ], "type": { @@ -139,9 +139,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 133, + "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L134" } ], "type": { @@ -158,9 +158,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 131, + "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L132" } ], "type": { @@ -177,9 +177,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 132, + "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L133" } ], "type": { @@ -197,9 +197,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 129, + "line": 130, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L31" } ] }, @@ -299,9 +299,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 147, + "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L148" } ], "type": { @@ -318,9 +318,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 146, + "line": 147, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L147" } ], "type": { @@ -337,9 +337,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 144, + "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L145" } ], "type": { @@ -356,9 +356,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 145, + "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L146" } ], "type": { @@ -376,9 +376,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 143, + "line": 144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L144" } ] }, @@ -406,9 +406,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 237, + "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "signatures": [ @@ -460,9 +460,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 237, + "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "parameters": [ @@ -533,9 +533,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 176, + "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L177" } ], "type": { @@ -576,9 +576,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 178, + "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L179" } ], "type": { @@ -597,9 +597,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 240, + "line": 241, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L241" } ], "type": { @@ -619,9 +619,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 180, + "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L181" } ], "type": { @@ -641,9 +641,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 179, + "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L180" } ], "type": { @@ -662,9 +662,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 241, + "line": 242, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L242" } ], "type": { @@ -684,9 +684,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 177, + "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L178" } ], "type": { @@ -713,9 +713,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 239, + "line": 240, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L240" } ], "type": { @@ -732,9 +732,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 192, + "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "getSignature": { @@ -746,9 +746,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 192, + "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "type": { @@ -766,9 +766,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 200, + "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "getSignature": { @@ -780,9 +780,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 200, + "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "type": { @@ -806,9 +806,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 204, + "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "getSignature": { @@ -820,9 +820,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 204, + "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "type": { @@ -846,15 +846,15 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 184, + "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L185" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 188, + "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "getSignature": { @@ -866,9 +866,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 184, + "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L185" } ], "type": { @@ -890,9 +890,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 188, + "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "parameters": [ @@ -928,9 +928,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 196, + "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "getSignature": { @@ -942,9 +942,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 196, + "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "type": { @@ -962,9 +962,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1077, + "line": 1076, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L1077" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L1076" } ], "signatures": [ @@ -977,9 +977,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1077, + "line": 1076, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L1077" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L1076" } ], "parameters": [ @@ -1014,9 +1014,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 747, + "line": 746, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L747" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L746" } ], "signatures": [ @@ -1057,9 +1057,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 747, + "line": 746, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L747" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L746" } ], "parameters": [ @@ -1135,9 +1135,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 749, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L749" } ], "type": { @@ -1155,9 +1155,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 749, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L749" } ] } @@ -1193,9 +1193,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -1213,9 +1213,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ] } @@ -1238,9 +1238,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -1257,9 +1257,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -1276,9 +1276,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ], "type": { @@ -1296,9 +1296,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 751, + "line": 750, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L750" } ] } @@ -1551,105 +1551,105 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 439, + "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L438" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 490, + "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L489" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 516, + "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L515" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 716, + "line": 715, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L715" } ], "signatures": [ @@ -1670,9 +1670,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 439, + "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L438" } ], "parameters": [ @@ -1711,9 +1711,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 440, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "type": { @@ -1731,9 +1731,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 440, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ] } @@ -1756,9 +1756,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 442, + "line": 441, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L441" } ], "signatures": [ @@ -1771,9 +1771,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 442, + "line": 441, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L441" } ], "type": { @@ -1811,9 +1811,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" } ], "typeParameters": [ @@ -1834,9 +1834,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" } ], "indexSignatures": [ @@ -1849,9 +1849,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 444, + "line": 443, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L443" } ], "parameters": [ @@ -1913,9 +1913,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 445, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L445" } ], "type": { @@ -1933,9 +1933,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 445, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L445" } ] } @@ -1958,9 +1958,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 447, + "line": 446, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L446" } ], "signatures": [ @@ -1973,9 +1973,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 447, + "line": 446, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L446" } ], "parameters": [ @@ -2037,9 +2037,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" } ], "typeParameters": [ @@ -2060,9 +2060,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" } ], "indexSignatures": [ @@ -2075,9 +2075,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 449, + "line": 448, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L448" } ], "parameters": [ @@ -2139,9 +2139,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 450, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L450" } ], "type": { @@ -2159,9 +2159,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 450, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L450" } ] } @@ -2184,9 +2184,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 452, + "line": 451, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L451" } ], "signatures": [ @@ -2199,9 +2199,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 452, + "line": 451, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L451" } ], "parameters": [ @@ -2263,9 +2263,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "typeParameters": [ @@ -2286,9 +2286,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "indexSignatures": [ @@ -2301,9 +2301,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 454, + "line": 453, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "parameters": [ @@ -2365,9 +2365,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 455, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ], "type": { @@ -2385,9 +2385,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 455, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ] } @@ -2410,9 +2410,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 457, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "signatures": [ @@ -2425,9 +2425,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 457, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "parameters": [ @@ -2511,9 +2511,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "typeParameters": [ @@ -2534,9 +2534,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "indexSignatures": [ @@ -2549,9 +2549,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 459, + "line": 458, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "parameters": [ @@ -2625,9 +2625,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 462, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "signatures": [ @@ -2640,9 +2640,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 462, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "parameters": [ @@ -2704,9 +2704,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "typeParameters": [ @@ -2727,9 +2727,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "indexSignatures": [ @@ -2742,9 +2742,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 464, + "line": 463, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "parameters": [ @@ -2818,9 +2818,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 467, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "signatures": [ @@ -2833,9 +2833,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 467, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "parameters": [ @@ -2897,9 +2897,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "typeParameters": [ @@ -2920,9 +2920,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "indexSignatures": [ @@ -2935,9 +2935,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 469, + "line": 468, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "parameters": [ @@ -3011,9 +3011,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 472, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "signatures": [ @@ -3026,9 +3026,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 472, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "parameters": [ @@ -3090,9 +3090,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "typeParameters": [ @@ -3113,9 +3113,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "indexSignatures": [ @@ -3128,9 +3128,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 474, + "line": 473, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "parameters": [ @@ -3204,9 +3204,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 477, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "signatures": [ @@ -3219,9 +3219,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 477, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "parameters": [ @@ -3283,9 +3283,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "typeParameters": [ @@ -3306,9 +3306,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "indexSignatures": [ @@ -3321,9 +3321,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 479, + "line": 478, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "parameters": [ @@ -3414,9 +3414,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 482, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "signatures": [ @@ -3429,9 +3429,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 482, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "parameters": [ @@ -3493,9 +3493,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 490, + "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L489" } ], "parameters": [ @@ -3550,9 +3550,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 491, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ], "type": { @@ -3570,9 +3570,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 491, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ] } @@ -3603,9 +3603,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 492, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "signatures": [ @@ -3618,9 +3618,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 492, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "parameters": [ @@ -3648,9 +3648,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 495, + "line": 494, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L494" } ], "type": { @@ -3669,9 +3669,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 496, + "line": 495, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L495" } ], "type": { @@ -3692,9 +3692,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 498, + "line": 497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L497" } ], "type": { @@ -3713,9 +3713,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 497, + "line": 496, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "type": { @@ -3733,9 +3733,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 496, + "line": 495, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L495" } ] } @@ -3750,9 +3750,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 494, + "line": 493, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "type": { @@ -3770,9 +3770,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 492, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "indexSignatures": [ @@ -3785,9 +3785,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 500, + "line": 499, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L499" } ], "parameters": [ @@ -3848,9 +3848,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" } ], "typeParameters": [ @@ -3871,9 +3871,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" } ], "indexSignatures": [ @@ -3886,9 +3886,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 503, + "line": 502, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L502" } ], "parameters": [ @@ -3950,9 +3950,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 504, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ], "type": { @@ -3970,9 +3970,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 504, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ] } @@ -3995,9 +3995,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 505, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ], "signatures": [ @@ -4010,9 +4010,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 505, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ], "parameters": [ @@ -4040,9 +4040,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 508, + "line": 507, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "type": { @@ -4061,9 +4061,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 509, + "line": 508, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L508" } ], "type": { @@ -4084,9 +4084,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 511, + "line": 510, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ], "type": { @@ -4105,9 +4105,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 510, + "line": 509, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L509" } ], "type": { @@ -4125,9 +4125,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 509, + "line": 508, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L509" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L508" } ] } @@ -4142,9 +4142,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 513, + "line": 512, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L512" } ], "type": { @@ -4164,9 +4164,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 507, + "line": 506, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ], "type": { @@ -4184,9 +4184,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 505, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ] } @@ -4228,9 +4228,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 516, + "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L515" } ], "typeParameters": [ @@ -4297,9 +4297,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 517, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "type": { @@ -4320,9 +4320,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 517, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ] } @@ -4345,9 +4345,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 518, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L518" } ], "signatures": [ @@ -4360,9 +4360,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 518, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L518" } ], "parameters": [ @@ -4390,9 +4390,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 521, + "line": 520, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ], "type": { @@ -4412,9 +4412,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 522, + "line": 521, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L521" } ], "type": { @@ -4445,9 +4445,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 520, + "line": 519, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ], "type": { @@ -4465,9 +4465,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 518, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L518" } ] } @@ -4509,9 +4509,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "typeParameters": [ @@ -4532,9 +4532,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "indexSignatures": [ @@ -4547,9 +4547,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 525, + "line": 524, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "parameters": [ @@ -4611,9 +4611,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 526, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L526" } ], "type": { @@ -4634,9 +4634,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 526, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L526" } ] } @@ -4659,9 +4659,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 527, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ], "signatures": [ @@ -4674,9 +4674,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 527, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ], "parameters": [ @@ -4704,9 +4704,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 530, + "line": 529, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L529" } ], "type": { @@ -4726,9 +4726,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 531, + "line": 530, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L530" } ], "type": { @@ -4759,9 +4759,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 529, + "line": 528, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L528" } ], "type": { @@ -4779,9 +4779,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 527, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ] } @@ -4823,9 +4823,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "typeParameters": [ @@ -4846,9 +4846,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "indexSignatures": [ @@ -4861,9 +4861,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 534, + "line": 533, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "parameters": [ @@ -4925,9 +4925,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 535, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L535" } ], "type": { @@ -4948,9 +4948,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 535, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L535" } ] } @@ -4973,9 +4973,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 536, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ], "signatures": [ @@ -4988,9 +4988,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 536, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ], "parameters": [ @@ -5018,9 +5018,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 539, + "line": 538, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L538" } ], "type": { @@ -5040,9 +5040,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 540, + "line": 539, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "type": { @@ -5073,9 +5073,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 538, + "line": 537, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L537" } ], "type": { @@ -5093,9 +5093,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 536, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ] } @@ -5137,9 +5137,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "typeParameters": [ @@ -5160,9 +5160,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "indexSignatures": [ @@ -5175,9 +5175,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 543, + "line": 542, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L543" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "parameters": [ @@ -5239,9 +5239,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 544, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L544" } ], "type": { @@ -5262,9 +5262,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 544, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L544" } ] } @@ -5287,9 +5287,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 545, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ], "signatures": [ @@ -5302,9 +5302,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 545, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ], "parameters": [ @@ -5332,9 +5332,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 548, + "line": 547, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L547" } ], "type": { @@ -5354,9 +5354,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 549, + "line": 548, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "type": { @@ -5387,9 +5387,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 547, + "line": 546, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L546" } ], "type": { @@ -5407,9 +5407,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 545, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ] } @@ -5451,9 +5451,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "typeParameters": [ @@ -5474,9 +5474,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "indexSignatures": [ @@ -5489,9 +5489,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 552, + "line": 551, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "parameters": [ @@ -5563,9 +5563,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 555, + "line": 554, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L554" } ], "signatures": [ @@ -5578,9 +5578,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 555, + "line": 554, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L554" } ], "parameters": [ @@ -5625,9 +5625,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "signatures": [ @@ -5659,9 +5659,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "typeParameters": [ @@ -5682,9 +5682,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "indexSignatures": [ @@ -5697,9 +5697,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 397, + "line": 396, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L396" } ], "parameters": [ @@ -5762,9 +5762,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 841, + "line": 840, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L840" } ], "signatures": [ @@ -5838,9 +5838,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 841, + "line": 840, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L840" } ], "parameters": [ @@ -5884,9 +5884,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 844, + "line": 843, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L844" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L843" } ], "type": { @@ -5913,9 +5913,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 845, + "line": 844, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L845" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L844" } ], "type": { @@ -5940,9 +5940,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 843, + "line": 842, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L842" } ], "type": { @@ -5973,9 +5973,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 842, + "line": 841, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L841" } ], "indexSignatures": [ @@ -5988,9 +5988,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 846, + "line": 845, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L845" } ], "parameters": [ @@ -6040,9 +6040,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 848, + "line": 847, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L847" } ], "indexSignatures": [ @@ -6055,9 +6055,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 848, + "line": 847, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L847" } ], "parameters": [ @@ -6113,9 +6113,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 276, + "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L277" } ], "signatures": [ @@ -6147,9 +6147,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 276, + "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L277" } ], "parameters": [ @@ -6172,9 +6172,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 278, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L278" } ], "signatures": [ @@ -6187,9 +6187,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 278, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L278" } ], "parameters": [ @@ -6266,9 +6266,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 949, + "line": 948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L948" } ], "signatures": [ @@ -6300,9 +6300,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 949, + "line": 948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L948" } ], "type": { @@ -6321,9 +6321,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L406" } ], "signatures": [ @@ -6363,9 +6363,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L406" } ], "parameters": [ @@ -6386,9 +6386,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 407, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L407" } ], "indexSignatures": [ @@ -6401,9 +6401,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 407, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L407" } ], "parameters": [ @@ -6445,9 +6445,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 409, + "line": 408, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L408" } ], "indexSignatures": [ @@ -6460,9 +6460,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 409, + "line": 408, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L408" } ], "parameters": [ @@ -6518,9 +6518,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 934, + "line": 933, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L933" } ], "signatures": [ @@ -6560,9 +6560,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 934, + "line": 933, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L933" } ], "parameters": [ @@ -6608,9 +6608,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "signatures": [ @@ -6642,9 +6642,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "parameters": [ @@ -6665,9 +6665,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "indexSignatures": [ @@ -6680,9 +6680,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 426, + "line": 425, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L425" } ], "parameters": [ @@ -6738,9 +6738,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 919, + "line": 918, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L919" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L918" } ], "signatures": [ @@ -6772,9 +6772,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 919, + "line": 918, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L919" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L918" } ], "parameters": [ @@ -6844,9 +6844,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 175, + "line": 176, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L176" } ] }, @@ -6868,7 +6868,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L235" } ], "signatures": [ @@ -6922,7 +6922,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L235" } ], "parameters": [ @@ -7076,7 +7076,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L99" } ], "type": { @@ -7099,7 +7099,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 99, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L99" } ], "signatures": [ @@ -7114,7 +7114,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 99, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L99" } ], "type": { @@ -7160,7 +7160,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L98" } ], "type": { @@ -7189,7 +7189,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L100" } ], "type": { @@ -7218,7 +7218,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L96" } ], "type": { @@ -7244,7 +7244,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L111" } ], "type": { @@ -7487,7 +7487,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "type": { @@ -7503,7 +7503,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "indexSignatures": [ @@ -7518,7 +7518,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "parameters": [ @@ -7555,7 +7555,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L102" } ], "type": { @@ -7577,7 +7577,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L109" } ], "type": { @@ -7603,7 +7603,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "type": { @@ -7619,7 +7619,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "indexSignatures": [ @@ -7634,7 +7634,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "parameters": [ @@ -7671,7 +7671,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L107" } ], "type": { @@ -7691,7 +7691,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 116, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L116" } ], "type": { @@ -7719,7 +7719,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L112" } ], "type": { @@ -7740,7 +7740,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L114" } ], "type": { @@ -7766,7 +7766,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L113" } ], "type": { @@ -7785,7 +7785,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "getSignature": { @@ -7799,7 +7799,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "type": { @@ -7830,7 +7830,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "getSignature": { @@ -7844,7 +7844,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "type": { @@ -7875,7 +7875,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 118, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L118" } ], "getSignature": { @@ -7889,7 +7889,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 118, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L118" } ], "type": { @@ -7909,7 +7909,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L130" } ], "getSignature": { @@ -7923,7 +7923,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L130" } ], "type": { @@ -7948,7 +7948,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L134" } ], "getSignature": { @@ -7962,7 +7962,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L134" } ], "type": { @@ -7982,7 +7982,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 138, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L138" } ], "getSignature": { @@ -7996,7 +7996,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 138, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L138" } ], "type": { @@ -8021,7 +8021,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 145, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L145" } ], "getSignature": { @@ -8035,7 +8035,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 145, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L145" } ], "type": { @@ -8064,7 +8064,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "getSignature": { @@ -8078,7 +8078,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "type": { @@ -8094,7 +8094,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "signatures": [ @@ -8109,7 +8109,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "parameters": [ @@ -8146,7 +8146,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L152" } ], "getSignature": { @@ -8160,7 +8160,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L152" } ], "type": { @@ -8186,7 +8186,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "getSignature": { @@ -8200,7 +8200,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "type": { @@ -8218,7 +8218,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "signatures": [ @@ -8233,7 +8233,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "type": { @@ -8258,7 +8258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "getSignature": { @@ -8272,7 +8272,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "type": { @@ -8295,7 +8295,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 178, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L178" } ], "type": { @@ -8331,7 +8331,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 179, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L179" } ], "type": { @@ -8367,7 +8367,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 180, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L180" } ], "type": { @@ -8403,7 +8403,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 177, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L177" } ], "type": { @@ -8440,7 +8440,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ] } @@ -8458,7 +8458,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L122" } ], "getSignature": { @@ -8472,7 +8472,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L122" } ], "type": { @@ -8492,7 +8492,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 126, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L126" } ], "getSignature": { @@ -8506,7 +8506,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 126, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L126" } ], "type": { @@ -8528,7 +8528,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 156, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L156" } ], "getSignature": { @@ -8542,7 +8542,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 156, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L156" } ], "type": { @@ -8567,7 +8567,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L427" } ], "signatures": [ @@ -8619,7 +8619,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 427, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L427" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L427" } ], "parameters": [ @@ -8670,7 +8670,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L255" } ], "signatures": [ @@ -8704,7 +8704,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L255" } ], "type": { @@ -8725,7 +8725,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L387" } ], "signatures": [ @@ -8759,7 +8759,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L387" } ], "type": { @@ -8785,7 +8785,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L314" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L314" } ], "signatures": [ @@ -8819,7 +8819,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L314" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L314" } ], "parameters": [ @@ -8904,7 +8904,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L302" } ], "signatures": [ @@ -8947,7 +8947,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L302" } ], "type": { @@ -8968,7 +8968,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 334, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L334" } ], "signatures": [ @@ -9002,7 +9002,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 334, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L334" } ], "type": { @@ -9029,7 +9029,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L396" } ], "signatures": [ @@ -9071,7 +9071,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 396, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L396" } ], "type": { @@ -9092,7 +9092,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L405" } ], "signatures": [ @@ -9134,7 +9134,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L405" } ], "type": { @@ -9155,7 +9155,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L414" } ], "signatures": [ @@ -9197,7 +9197,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L414" } ], "type": { @@ -9218,7 +9218,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L378" } ], "signatures": [ @@ -9260,7 +9260,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L378" } ], "parameters": [ @@ -9318,7 +9318,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L508" } ], "signatures": [ @@ -9352,7 +9352,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L508" } ], "parameters": [ @@ -9391,7 +9391,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L449" } ], "signatures": [ @@ -9425,7 +9425,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L449" } ], "parameters": [ @@ -9461,7 +9461,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 359, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L359" } ], "signatures": [ @@ -9495,7 +9495,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 359, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L359" } ], "type": { @@ -9532,7 +9532,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "signatures": [ @@ -9566,7 +9566,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "parameters": [ @@ -9624,7 +9624,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 498, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L498" } ], "signatures": [ @@ -9658,7 +9658,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 498, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L498" } ], "type": { @@ -9690,7 +9690,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 475, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L475" } ], "signatures": [ @@ -9757,7 +9757,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 475, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L475" } ], "parameters": [ @@ -9850,7 +9850,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 93, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L93" } ] }, @@ -9872,7 +9872,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "signatures": [ @@ -9916,7 +9916,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "parameters": [ @@ -10008,7 +10008,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 66, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L66" } ], "type": { @@ -10030,7 +10030,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "getSignature": { @@ -10044,7 +10044,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "type": { @@ -10085,7 +10085,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 41, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L41" } ] }, @@ -10118,7 +10118,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 153, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" } ], "signatures": [ @@ -10162,7 +10162,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 153, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L153" } ], "type": { @@ -10276,7 +10276,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 178, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" } ], "signatures": [ @@ -10320,7 +10320,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 178, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L178" } ], "type": { @@ -10348,7 +10348,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 50, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" } ] }, @@ -10372,7 +10372,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" } ], "type": { @@ -10393,7 +10393,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" } ], "type": { @@ -10414,7 +10414,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" } ], "type": { @@ -10435,7 +10435,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 4, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" } ], "type": { @@ -10456,7 +10456,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 2, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" } ], "type": { @@ -10477,7 +10477,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "type": { @@ -10493,7 +10493,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "signatures": [ @@ -10508,7 +10508,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "parameters": [ @@ -10551,7 +10551,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" } ], "type": { @@ -10570,7 +10570,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "type": { @@ -10593,7 +10593,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "signatures": [ @@ -10608,7 +10608,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "parameters": [ @@ -10662,7 +10662,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "type": { @@ -10685,7 +10685,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "signatures": [ @@ -10700,7 +10700,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "parameters": [ @@ -10754,7 +10754,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "type": { @@ -10777,7 +10777,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "signatures": [ @@ -10792,7 +10792,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "parameters": [ @@ -10846,7 +10846,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "type": { @@ -10869,7 +10869,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "signatures": [ @@ -10884,7 +10884,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "parameters": [ @@ -10940,7 +10940,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 3, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" } ], "type": { @@ -10961,7 +10961,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 8, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" } ], "type": { @@ -10982,7 +10982,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" } ], "type": { @@ -11003,7 +11003,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 7, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" } ], "type": { @@ -11022,7 +11022,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "signatures": [ @@ -11045,7 +11045,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "parameters": [ @@ -11095,7 +11095,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "signatures": [ @@ -11118,7 +11118,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "parameters": [ @@ -11167,7 +11167,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "signatures": [ @@ -11190,7 +11190,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "parameters": [ @@ -11240,7 +11240,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "signatures": [ @@ -11263,7 +11263,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "parameters": [ @@ -11345,7 +11345,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 1, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" } ] }, @@ -11383,7 +11383,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "signatures": [ @@ -11398,7 +11398,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L59" } ], "parameters": [ @@ -11474,7 +11474,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "indexSignatures": [ @@ -11489,7 +11489,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L61" } ], "parameters": [ @@ -11521,9 +11521,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 21, + "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ], "type": { @@ -11544,9 +11544,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 22, + "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ], "type": { @@ -11577,9 +11577,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11602,9 +11602,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11623,9 +11623,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11649,9 +11649,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11669,9 +11669,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 28, + "line": 29, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ] } @@ -11696,9 +11696,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11721,9 +11721,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11742,9 +11742,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11762,9 +11762,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 32, + "line": 33, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ] } @@ -11789,9 +11789,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 36, + "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L37" } ], "type": { @@ -11809,9 +11809,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 22, + "line": 23, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ] } @@ -11827,9 +11827,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 21, + "line": 22, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ] } @@ -11844,9 +11844,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 127, + "line": 128, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ], "type": { @@ -11878,7 +11878,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ], "type": { @@ -11903,7 +11903,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "type": { @@ -11919,7 +11919,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "signatures": [ @@ -11971,7 +11971,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L72" } ], "type": { @@ -12003,7 +12003,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L83" } ], "type": { @@ -12024,7 +12024,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L71" } ], "type": { @@ -12056,7 +12056,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L79" } ], "type": { @@ -12082,7 +12082,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "type": { @@ -12098,7 +12098,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "indexSignatures": [ @@ -12113,7 +12113,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "parameters": [ @@ -12151,7 +12151,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "type": { @@ -12167,7 +12167,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "signatures": [ @@ -12230,7 +12230,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L67" } ], "type": { @@ -12251,7 +12251,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L77" } ], "type": { @@ -12277,7 +12277,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "type": { @@ -12293,7 +12293,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "signatures": [ @@ -12362,7 +12362,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L78" } ], "type": { @@ -12388,7 +12388,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "type": { @@ -12404,7 +12404,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "indexSignatures": [ @@ -12419,7 +12419,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "parameters": [ @@ -12457,7 +12457,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "type": { @@ -12473,7 +12473,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "signatures": [ @@ -12518,7 +12518,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L66" } ], "type": { @@ -12539,7 +12539,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L65" } ], "type": { @@ -12562,7 +12562,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L69" } ], "type": { @@ -12583,7 +12583,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L80" } ], "type": { @@ -12604,7 +12604,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L81" } ], "type": { @@ -12627,7 +12627,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ] } @@ -12644,7 +12644,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ], "type": { @@ -12667,7 +12667,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L34" } ], "type": { @@ -12688,7 +12688,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L37" } ], "type": { @@ -12707,7 +12707,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L35" } ], "type": { @@ -12726,7 +12726,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L36" } ], "type": { @@ -12745,7 +12745,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L33" } ], "type": { @@ -12765,7 +12765,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ] } @@ -12780,9 +12780,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 108, + "line": 109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ], "typeParameters": [ @@ -12835,9 +12835,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 112, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L113" } ], "type": { @@ -12867,9 +12867,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 124, + "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L125" } ], "type": { @@ -12894,9 +12894,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 116, + "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L117" } ], "type": { @@ -12923,9 +12923,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 120, + "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L121" } ], "type": { @@ -12943,9 +12943,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 108, + "line": 109, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ] } @@ -12960,9 +12960,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 103, + "line": 104, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "typeParameters": [ @@ -12983,9 +12983,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 103, + "line": 104, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "indexSignatures": [ @@ -12998,9 +12998,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 103, + "line": 104, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "parameters": [ @@ -13086,9 +13086,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 96, + "line": 97, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "typeParameters": [ @@ -13109,9 +13109,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 96, + "line": 97, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "indexSignatures": [ @@ -13124,9 +13124,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 96, + "line": 97, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "parameters": [ @@ -13182,9 +13182,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 98, + "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L99" } ], "type": { @@ -13212,9 +13212,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 99, + "line": 100, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ], "type": { @@ -13228,9 +13228,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 99, + "line": 100, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ] } @@ -13245,9 +13245,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 100, + "line": 101, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L101" } ], "type": { @@ -13279,9 +13279,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 97, + "line": 98, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L98" } ] } @@ -13298,9 +13298,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 82, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "typeParameters": [ @@ -13321,9 +13321,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 82, + "line": 83, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "indexSignatures": [ @@ -13336,9 +13336,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 82, + "line": 83, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "parameters": [ @@ -13394,9 +13394,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 84, + "line": 85, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L85" } ], "type": { @@ -13424,9 +13424,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 85, + "line": 86, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L86" } ], "type": { @@ -13446,9 +13446,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 86, + "line": 87, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ], "type": { @@ -13462,9 +13462,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 86, + "line": 87, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ] } @@ -13480,9 +13480,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 83, + "line": 84, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L84" } ] } @@ -13499,9 +13499,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 89, + "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "typeParameters": [ @@ -13522,9 +13522,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 89, + "line": 90, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "indexSignatures": [ @@ -13537,9 +13537,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 89, + "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "parameters": [ @@ -13595,9 +13595,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 91, + "line": 92, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L92" } ], "type": { @@ -13625,9 +13625,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 92, + "line": 93, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L93" } ], "type": { @@ -13647,9 +13647,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 93, + "line": 94, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L94" } ], "type": { @@ -13681,9 +13681,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 90, + "line": 91, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L91" } ] } @@ -13702,7 +13702,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "typeParameters": [ @@ -13725,7 +13725,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "indexSignatures": [ @@ -13740,7 +13740,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "parameters": [ @@ -13786,7 +13786,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L20" } ], "type": { @@ -13822,7 +13822,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L18" } ], "type": { @@ -13852,7 +13852,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L19" } ], "type": { @@ -13871,7 +13871,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L21" } ], "type": { @@ -13908,7 +13908,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ] } @@ -13925,7 +13925,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "typeParameters": [ @@ -13948,7 +13948,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "indexSignatures": [ @@ -13963,7 +13963,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "parameters": [ @@ -14009,7 +14009,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L27" } ], "type": { @@ -14045,7 +14045,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L25" } ], "type": { @@ -14075,7 +14075,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L26" } ], "type": { @@ -14094,7 +14094,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L28" } ], "type": { @@ -14131,7 +14131,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 77, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ] } @@ -14148,7 +14148,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "typeParameters": [ @@ -14171,7 +14171,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -14186,7 +14186,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "parameters": [ @@ -14223,7 +14223,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ] } @@ -14243,7 +14243,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 75, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -14258,7 +14258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimePresence.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimePresence.ts#L14" } ], "parameters": [ @@ -14311,7 +14311,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 40, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeClient.ts#L40" } ], "type": { @@ -14343,9 +14343,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 150, + "line": 151, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/RealtimeChannel.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/RealtimeChannel.ts#L151" } ], "type": { @@ -14370,7 +14370,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L33" } ], "type": { @@ -14392,7 +14392,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L34" } ], "type": { @@ -14414,7 +14414,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L35" } ], "type": { @@ -14436,7 +14436,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L36" } ], "type": { @@ -14458,7 +14458,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/realtime-js/src/lib/constants.ts#L37" } ], "type": { @@ -14479,7 +14479,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/realtime-js/src/lib/constants.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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 69f8a33c2a38d..d46b7059cbf95 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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L58" } ], "extendedTypes": [ @@ -584,7 +584,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L34" } ], "signatures": [ @@ -638,7 +638,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L34" } ], "parameters": [ @@ -672,7 +672,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L36" } ], "indexSignatures": [ @@ -687,7 +687,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L36" } ], "parameters": [ @@ -980,7 +980,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 87, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L87" } ], "getSignature": { @@ -1023,7 +1023,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 87, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L87" } ], "type": { @@ -1046,7 +1046,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 69, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L69" } ], "getSignature": { @@ -1089,7 +1089,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 69, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L69" } ], "type": { @@ -1113,7 +1113,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "signatures": [ @@ -1209,7 +1209,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "parameters": [ @@ -1268,7 +1268,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ], "type": { @@ -1309,7 +1309,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" } ], "type": { @@ -1349,7 +1349,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "type": { @@ -1390,7 +1390,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -1412,7 +1412,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 187, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" } ] } @@ -1450,7 +1450,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 197, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" } ], "type": { @@ -1486,7 +1486,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 198, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" } ], "type": { @@ -1506,7 +1506,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 196, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" } ] } @@ -1531,7 +1531,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -1550,7 +1550,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" } ], "type": { @@ -1572,7 +1572,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ] } @@ -1609,7 +1609,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "signatures": [ @@ -1721,7 +1721,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "parameters": [ @@ -1775,7 +1775,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -1798,7 +1798,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -1818,7 +1818,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ] } @@ -1835,7 +1835,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" } ], "type": { @@ -1855,7 +1855,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 373, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" } ] } @@ -1880,7 +1880,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "type": { @@ -1899,7 +1899,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ], "type": { @@ -1921,7 +1921,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 377, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" } ] } @@ -1958,7 +1958,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "signatures": [ @@ -2070,7 +2070,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "parameters": [ @@ -2124,7 +2124,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -2147,7 +2147,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -2167,7 +2167,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ] } @@ -2184,7 +2184,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 329, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" } ], "type": { @@ -2204,7 +2204,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 327, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" } ] } @@ -2229,7 +2229,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ], "type": { @@ -2248,7 +2248,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -2270,7 +2270,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ] } @@ -2305,7 +2305,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L54" } ], "signatures": [ @@ -2349,7 +2349,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L54" } ], "parameters": [ @@ -2396,7 +2396,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "signatures": [ @@ -2492,7 +2492,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "parameters": [ @@ -2546,7 +2546,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "type": { @@ -2567,7 +2567,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ], "type": { @@ -2587,7 +2587,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 128, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" } ] } @@ -2612,7 +2612,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 133, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" } ], "type": { @@ -2631,7 +2631,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ], "type": { @@ -2653,7 +2653,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ] } @@ -2690,7 +2690,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "signatures": [ @@ -2788,7 +2788,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "parameters": [ @@ -2878,7 +2878,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ], "type": { @@ -2902,7 +2902,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -2922,7 +2922,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ] } @@ -2947,7 +2947,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ], "type": { @@ -2966,7 +2966,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -2988,7 +2988,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" } ] } @@ -3026,7 +3026,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -3062,7 +3062,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -3136,7 +3136,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -3172,7 +3172,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -3205,7 +3205,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "signatures": [ @@ -3309,7 +3309,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "parameters": [ @@ -3368,7 +3368,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 268, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" } ], "type": { @@ -3409,7 +3409,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "type": { @@ -3449,7 +3449,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 266, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" } ], "type": { @@ -3469,7 +3469,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 265, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" } ] } @@ -3506,7 +3506,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -3529,7 +3529,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -3549,7 +3549,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ] } @@ -3566,7 +3566,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 273, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" } ], "type": { @@ -3586,7 +3586,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ] } @@ -3611,7 +3611,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -3630,7 +3630,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -3652,7 +3652,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -3714,7 +3714,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L11" } ], "extendedTypes": [ @@ -3752,7 +3752,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "signatures": [ @@ -3767,7 +3767,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "parameters": [ @@ -3853,7 +3853,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -3881,7 +3881,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -3909,7 +3909,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -3924,7 +3924,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -3947,7 +3947,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -3966,7 +3966,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -3985,7 +3985,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -4013,7 +4013,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -4042,7 +4042,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -4070,7 +4070,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L11" } ], "extendedTypes": [ @@ -4128,7 +4128,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "signatures": [ @@ -4143,7 +4143,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "parameters": [ @@ -4214,7 +4214,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -4235,7 +4235,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -4270,7 +4270,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -4305,7 +4305,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -4322,7 +4322,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -4345,7 +4345,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -4364,7 +4364,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -4383,7 +4383,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -4411,7 +4411,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -4440,7 +4440,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -4478,7 +4478,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L90" } ], "extendedTypes": [ @@ -4529,7 +4529,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "signatures": [ @@ -4544,7 +4544,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "parameters": [ @@ -4614,7 +4614,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -4640,7 +4640,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -4666,7 +4666,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -4683,7 +4683,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -4706,7 +4706,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -4725,7 +4725,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -4744,7 +4744,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -4772,7 +4772,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -4801,7 +4801,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -4839,7 +4839,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 127, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L127" } ], "extendedTypes": [ @@ -4883,7 +4883,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "signatures": [ @@ -4898,7 +4898,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "parameters": [ @@ -4946,7 +4946,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -4981,7 +4981,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -5016,7 +5016,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -5033,7 +5033,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -5056,7 +5056,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -5075,7 +5075,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -5094,7 +5094,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -5122,7 +5122,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -5151,7 +5151,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -5189,7 +5189,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 108, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L108" } ], "extendedTypes": [ @@ -5233,7 +5233,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "signatures": [ @@ -5248,7 +5248,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "parameters": [ @@ -5307,7 +5307,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -5333,7 +5333,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -5368,7 +5368,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -5403,7 +5403,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -5420,7 +5420,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -5443,7 +5443,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -5462,7 +5462,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -5481,7 +5481,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -5509,7 +5509,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -5538,7 +5538,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -5576,7 +5576,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 137, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L137" } ], "extendedTypes": [ @@ -5622,7 +5622,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 42, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L42" } ], "type": { @@ -5649,7 +5649,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L40" } ], "type": { @@ -5676,7 +5676,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L36" } ], "type": { @@ -5703,7 +5703,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L38" } ], "type": { @@ -5730,7 +5730,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L44" } ], "type": { @@ -5750,7 +5750,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 34, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L34" } ] }, @@ -5774,7 +5774,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L16" } ], "type": { @@ -5796,7 +5796,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L17" } ], "type": { @@ -5817,7 +5817,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L15" } ], "type": { @@ -5836,7 +5836,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L11" } ], "type": { @@ -5855,7 +5855,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L13" } ], "type": { @@ -5874,7 +5874,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L14" } ], "type": { @@ -5893,7 +5893,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L19" } ], "type": { @@ -5914,7 +5914,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L12" } ], "type": { @@ -5935,7 +5935,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L18" } ], "type": { @@ -5955,7 +5955,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 10, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L10" } ] }, @@ -5993,7 +5993,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L549" } ], "type": { @@ -6020,7 +6020,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L550" } ], "type": { @@ -6050,7 +6050,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L548" } ], "type": { @@ -6070,7 +6070,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 547, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L547" } ] }, @@ -6094,7 +6094,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L176" } ], "type": { @@ -6114,7 +6114,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 175, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L175" } ] }, @@ -6154,7 +6154,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L362" } ], "type": { @@ -6183,7 +6183,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L363" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L363" } ], "type": { @@ -6203,7 +6203,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 361, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L361" } ] }, @@ -6241,7 +6241,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 646, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L646" } ], "type": { @@ -6268,7 +6268,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 647, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L647" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L647" } ], "type": { @@ -6290,7 +6290,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 645, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L645" } ] }, @@ -6322,7 +6322,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L296" } ], "type": { @@ -6376,7 +6376,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 285, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L285" } ], "type": { @@ -6401,7 +6401,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 281, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L281" } ] }, @@ -6439,7 +6439,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L59" } ], "type": { @@ -6466,7 +6466,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L63" } ], "type": { @@ -6493,7 +6493,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L53" } ], "type": { @@ -6520,7 +6520,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L65" } ], "type": { @@ -6547,7 +6547,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L61" } ], "type": { @@ -6574,7 +6574,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L57" } ], "type": { @@ -6601,7 +6601,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L55" } ], "type": { @@ -6621,7 +6621,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 51, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L51" } ], "indexSignatures": [ @@ -6644,7 +6644,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L67" } ], "parameters": [ @@ -6709,7 +6709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L94" } ], "type": { @@ -6744,7 +6744,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L104" } ], "type": { @@ -6773,7 +6773,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L85" } ], "type": { @@ -6809,7 +6809,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L81" } ], "type": { @@ -6851,7 +6851,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L87" } ], "type": { @@ -6887,7 +6887,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L89" } ], "type": { @@ -6925,7 +6925,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L79" } ], "type": { @@ -6960,7 +6960,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L99" } ], "type": { @@ -6987,7 +6987,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L83" } ], "type": { @@ -7016,7 +7016,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 77, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L77" } ] }, @@ -7054,7 +7054,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L119" } ], "type": { @@ -7083,7 +7083,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L125" } ], "type": { @@ -7112,7 +7112,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L127" } ], "type": { @@ -7139,7 +7139,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L121" } ], "type": { @@ -7168,7 +7168,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L129" } ], "type": { @@ -7195,7 +7195,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L113" } ], "type": { @@ -7224,7 +7224,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L131" } ], "type": { @@ -7253,7 +7253,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L133" } ], "type": { @@ -7282,7 +7282,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L117" } ], "type": { @@ -7311,7 +7311,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L123" } ], "type": { @@ -7346,7 +7346,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L138" } ], "type": { @@ -7373,7 +7373,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L115" } ], "type": { @@ -7393,7 +7393,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 111, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L111" } ] }, @@ -7433,7 +7433,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L150" } ], "type": { @@ -7510,7 +7510,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 154, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L154" } ], "type": { @@ -7539,7 +7539,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L162" } ], "type": { @@ -7568,7 +7568,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 172, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L172" } ], "type": { @@ -7612,7 +7612,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 167, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L167" } ], "type": { @@ -7656,7 +7656,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L158" } ], "type": { @@ -7676,7 +7676,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 146, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L146" } ] }, @@ -7714,7 +7714,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L515" } ], "type": { @@ -7741,7 +7741,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L516" } ], "type": { @@ -7773,7 +7773,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L517" } ], "type": { @@ -7802,7 +7802,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 518, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L518" } ], "type": { @@ -7829,7 +7829,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 514, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L514" } ], "type": { @@ -7849,7 +7849,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 513, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L513" } ] }, @@ -7887,7 +7887,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 526, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L526" } ], "type": { @@ -7912,7 +7912,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 525, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L525" } ] }, @@ -7936,7 +7936,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L23" } ], "type": { @@ -7957,7 +7957,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L24" } ], "type": { @@ -7978,7 +7978,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L27" } ], "type": { @@ -7999,7 +7999,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L25" } ], "type": { @@ -8037,7 +8037,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L26" } ], "type": { @@ -8066,7 +8066,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L22" } ] }, @@ -8106,7 +8106,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L491" } ], "type": { @@ -8135,7 +8135,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L492" } ], "type": { @@ -8164,7 +8164,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L490" } ], "type": { @@ -8191,7 +8191,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L489" } ], "type": { @@ -8211,7 +8211,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 488, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L488" } ] }, @@ -8249,7 +8249,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -8274,7 +8274,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -8294,7 +8294,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L501" } ] } @@ -8322,7 +8322,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L502" } ], "type": { @@ -8342,7 +8342,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 500, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L500" } ] }, @@ -8382,7 +8382,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L467" } ], "type": { @@ -8411,7 +8411,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L468" } ], "type": { @@ -8440,7 +8440,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L466" } ], "type": { @@ -8460,7 +8460,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 465, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L465" } ] }, @@ -8500,7 +8500,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L478" } ], "type": { @@ -8527,7 +8527,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -8552,7 +8552,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -8572,7 +8572,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L477" } ] } @@ -8591,7 +8591,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 476, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L476" } ] }, @@ -8629,7 +8629,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 567, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L567" } ], "type": { @@ -8658,7 +8658,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 568, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L568" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L568" } ], "type": { @@ -8687,7 +8687,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L569" } ], "type": { @@ -8716,7 +8716,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L570" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L570" } ], "type": { @@ -8745,7 +8745,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L571" } ], "type": { @@ -8774,7 +8774,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 572, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L572" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L572" } ], "type": { @@ -8803,7 +8803,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 573, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L573" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L573" } ], "type": { @@ -8830,7 +8830,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L566" } ], "type": { @@ -8850,7 +8850,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 565, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L565" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L565" } ] }, @@ -8890,7 +8890,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 583, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L583" } ], "type": { @@ -8917,7 +8917,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 582, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L582" } ], "type": { @@ -8942,7 +8942,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 581, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L581" } ] }, @@ -8964,7 +8964,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L301" } ], "type": { @@ -8984,7 +8984,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 300, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L300" } ] }, @@ -9024,7 +9024,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L384" } ], "type": { @@ -9047,7 +9047,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 383, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L383" } ] }, @@ -9085,7 +9085,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 537, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L537" } ], "type": { @@ -9112,7 +9112,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L536" } ], "type": { @@ -9139,7 +9139,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L538" } ], "type": { @@ -9164,7 +9164,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 535, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L535" } ] }, @@ -9204,7 +9204,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 607, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L607" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L607" } ], "type": { @@ -9233,7 +9233,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L604" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L604" } ], "type": { @@ -9260,7 +9260,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L605" } ], "type": { @@ -9291,7 +9291,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 608, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L608" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L608" } ], "type": { @@ -9320,7 +9320,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 609, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L609" } ], "type": { @@ -9349,7 +9349,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L606" } ], "type": { @@ -9376,7 +9376,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 603, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L603" } ], "type": { @@ -9396,7 +9396,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 602, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L602" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L602" } ] }, @@ -9436,7 +9436,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L619" } ], "type": { @@ -9465,7 +9465,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L618" } ], "type": { @@ -9490,7 +9490,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L617" } ] }, @@ -9533,7 +9533,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L184" } ], "type": { @@ -9562,7 +9562,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L189" } ], "type": { @@ -9591,7 +9591,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L199" } ], "type": { @@ -9620,7 +9620,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 194, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L194" } ], "type": { @@ -9642,7 +9642,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 179, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L179" } ] }, @@ -9682,7 +9682,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 271, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L271" } ], "type": { @@ -9709,7 +9709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L269" } ], "type": { @@ -9729,7 +9729,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 267, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L267" } ] }, @@ -9767,7 +9767,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L257" } ], "type": { @@ -9794,7 +9794,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L253" } ], "type": { @@ -9823,7 +9823,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L251" } ], "type": { @@ -9856,7 +9856,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L261" } ], "type": { @@ -9883,7 +9883,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L259" } ], "type": { @@ -9921,7 +9921,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L249" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L249" } ], "type": { @@ -9948,7 +9948,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L255" } ], "type": { @@ -9968,7 +9968,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 247, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L247" } ] }, @@ -10000,7 +10000,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L222" } ], "type": { @@ -10040,7 +10040,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 212, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L212" } ], "type": { @@ -10069,7 +10069,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L217" } ], "type": { @@ -10109,7 +10109,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L239" } ], "type": { @@ -10167,7 +10167,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L233" } ], "type": { @@ -10187,7 +10187,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 207, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L207" } ] }, @@ -10209,7 +10209,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 276, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L276" } ], "type": { @@ -10233,7 +10233,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L275" } ], "type": { @@ -10254,7 +10254,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 278, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L278" } ], "type": { @@ -10273,7 +10273,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L277" } ], "type": { @@ -10298,7 +10298,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 274, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L274" } ] }, @@ -10322,7 +10322,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L142" } ], "type": { @@ -10343,7 +10343,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L143" } ], "type": { @@ -10363,7 +10363,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 141, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L141" } ] }, @@ -10385,7 +10385,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L203" } ], "type": { @@ -10419,7 +10419,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 204, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L204" } ], "type": { @@ -10448,7 +10448,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 202, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L202" } ] }, @@ -10472,7 +10472,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L8" } ], "type": { @@ -10492,7 +10492,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 7, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L7" } ] }, @@ -10530,7 +10530,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L636" } ], "type": { @@ -10561,7 +10561,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L637" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L637" } ], "type": { @@ -10581,7 +10581,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L635" } ], "typeParameters": [ @@ -10622,7 +10622,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L332" } ], "type": { @@ -10651,7 +10651,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L312" } ], "type": { @@ -10680,7 +10680,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L325" } ], "type": { @@ -10709,7 +10709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L319" } ], "type": { @@ -10751,7 +10751,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L308" } ], "type": { @@ -10771,7 +10771,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 304, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L304" } ] }, @@ -10811,7 +10811,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L374" } ], "type": { @@ -10840,7 +10840,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L375" } ], "type": { @@ -10869,7 +10869,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L373" } ], "type": { @@ -10889,7 +10889,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 372, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L372" } ] }, @@ -10927,7 +10927,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L424" } ], "type": { @@ -10950,7 +10950,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 423, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L423" } ] }, @@ -10990,7 +10990,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 627, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L627" } ], "type": { @@ -11015,7 +11015,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 626, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L626" } ] }, @@ -11055,7 +11055,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L415" } ], "type": { @@ -11082,7 +11082,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L411" } ], "type": { @@ -11109,7 +11109,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 412, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L412" } ], "type": { @@ -11136,7 +11136,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L413" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L413" } ], "type": { @@ -11165,7 +11165,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L409" } ], "type": { @@ -11194,7 +11194,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L414" } ], "type": { @@ -11223,7 +11223,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L410" } ], "type": { @@ -11243,7 +11243,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 408, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L408" } ] }, @@ -11283,7 +11283,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L454" } ], "type": { @@ -11314,7 +11314,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L456" } ], "type": { @@ -11341,7 +11341,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L453" } ], "type": { @@ -11370,7 +11370,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L455" } ], "type": { @@ -11392,7 +11392,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 452, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L452" } ] }, @@ -11430,7 +11430,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L441" } ], "type": { @@ -11459,7 +11459,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 440, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L440" } ], "type": { @@ -11488,7 +11488,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L442" } ], "type": { @@ -11510,7 +11510,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 439, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L439" } ] }, @@ -11533,7 +11533,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 654, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L654" } ], "typeParameters": [ @@ -11591,7 +11591,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L8" } ], "type": { @@ -11619,7 +11619,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 339, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L339" } ], "typeParameters": [ @@ -11722,7 +11722,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 396, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L396" } ], "type": { @@ -11754,7 +11754,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 343, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L343" } ], "typeParameters": [ @@ -11789,7 +11789,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 345, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L345" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L345" } ], "type": { @@ -11811,7 +11811,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 346, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L346" } ], "type": { @@ -11831,7 +11831,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 344, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L344" } ] } @@ -11856,7 +11856,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 349, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L349" } ], "type": { @@ -11875,7 +11875,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 350, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L350" } ], "type": { @@ -11897,7 +11897,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 348, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L348" } ] } @@ -11924,7 +11924,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 5, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L5" } ], "type": { @@ -11960,7 +11960,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 391, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L391" } ], "type": { @@ -11987,7 +11987,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 590, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L590" } ], "type": { @@ -12029,7 +12029,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 431, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L431" } ], "type": { @@ -12063,7 +12063,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "signatures": [ @@ -12097,7 +12097,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "parameters": [ @@ -12146,7 +12146,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "signatures": [ @@ -12180,7 +12180,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "parameters": [ @@ -12229,7 +12229,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 15, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L15" } ], "target": 896 @@ -12245,7 +12245,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 3, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L3" } ], "target": 48 @@ -12261,7 +12261,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L7" } ], "target": 549 @@ -12277,7 +12277,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 11, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L11" } ], "target": 536 @@ -12293,7 +12293,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L8" } ], "target": 604 @@ -12309,7 +12309,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L9" } ], "target": 672 @@ -12350,7 +12350,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L1" } ] }, @@ -12379,7 +12379,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "signatures": [ @@ -12394,7 +12394,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "parameters": [ @@ -12417,7 +12417,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "signatures": [ @@ -12432,7 +12432,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "type": { @@ -12495,7 +12495,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" } ], "type": { @@ -12520,7 +12520,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "signatures": [ @@ -12535,7 +12535,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "type": { @@ -12559,7 +12559,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "signatures": [ @@ -12593,7 +12593,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "typeParameters": [ @@ -12646,7 +12646,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "signatures": [ @@ -12661,7 +12661,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "parameters": [ @@ -12779,7 +12779,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -12813,7 +12813,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "parameters": [ @@ -12853,7 +12853,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -12868,7 +12868,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "type": { @@ -12935,7 +12935,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "signatures": [ @@ -12969,7 +12969,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "typeParameters": [ @@ -13046,7 +13046,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "signatures": [ @@ -13061,7 +13061,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "parameters": [ @@ -13163,7 +13163,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "signatures": [ @@ -13178,7 +13178,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "parameters": [ @@ -13295,7 +13295,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 5, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" } ], "implementedTypes": [ @@ -13341,7 +13341,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" } ] }, @@ -13378,7 +13378,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "signatures": [ @@ -13433,7 +13433,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "parameters": [ @@ -13483,7 +13483,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "indexSignatures": [ @@ -13498,7 +13498,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "parameters": [ @@ -13785,7 +13785,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" } ], "signatures": [ @@ -13856,7 +13856,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" } ], "parameters": [ @@ -13910,7 +13910,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 95, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ], "type": { @@ -13931,7 +13931,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 96, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" } ], "type": { @@ -13951,7 +13951,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 94, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L94" } ] } @@ -13976,7 +13976,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 99, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L99" } ], "type": { @@ -13995,7 +13995,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 100, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" } ], "type": { @@ -14017,7 +14017,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" } ] } @@ -14042,7 +14042,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" } ], "signatures": [ @@ -14113,7 +14113,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" } ], "parameters": [ @@ -14167,7 +14167,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" } ], "type": { @@ -14190,7 +14190,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 226, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" } ], "type": { @@ -14210,7 +14210,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 226, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" } ] } @@ -14227,7 +14227,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 227, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227" } ], "type": { @@ -14247,7 +14247,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L225" } ] } @@ -14272,7 +14272,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ], "type": { @@ -14291,7 +14291,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 231, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" } ], "type": { @@ -14313,7 +14313,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" } ] } @@ -14338,7 +14338,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 367, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" } ], "signatures": [ @@ -14512,7 +14512,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 367, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" } ], "parameters": [ @@ -14556,7 +14556,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" } ], "signatures": [ @@ -14627,7 +14627,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" } ], "parameters": [ @@ -14677,7 +14677,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 159, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L159" } ], "type": { @@ -14706,7 +14706,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 160, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160" } ], "type": { @@ -14735,7 +14735,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" } ], "type": { @@ -14764,7 +14764,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "type": { @@ -14806,7 +14806,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 162, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" } ], "type": { @@ -14835,7 +14835,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 158, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" } ] } @@ -14872,7 +14872,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 166, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" } ], "type": { @@ -14896,7 +14896,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 167, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L167" } ], "type": { @@ -14916,7 +14916,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 165, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" } ] } @@ -14941,7 +14941,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 170, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" } ], "type": { @@ -14960,7 +14960,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 171, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L171" } ], "type": { @@ -14982,7 +14982,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 169, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" } ] } @@ -15010,7 +15010,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -15046,7 +15046,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -15120,7 +15120,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -15156,7 +15156,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -15202,7 +15202,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 21, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" } ], "extendedTypes": [ @@ -15236,7 +15236,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" } ], "type": { @@ -15306,7 +15306,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" } ] }, @@ -15335,7 +15335,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "signatures": [ @@ -15350,7 +15350,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "parameters": [ @@ -15384,7 +15384,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "indexSignatures": [ @@ -15399,7 +15399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "parameters": [ @@ -15693,7 +15693,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "signatures": [ @@ -15787,7 +15787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "parameters": [ @@ -15846,7 +15846,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ], "type": { @@ -15887,7 +15887,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" } ], "type": { @@ -15927,7 +15927,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "type": { @@ -15968,7 +15968,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -15990,7 +15990,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 187, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" } ] } @@ -16028,7 +16028,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 197, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" } ], "type": { @@ -16064,7 +16064,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 198, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" } ], "type": { @@ -16084,7 +16084,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 196, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" } ] } @@ -16109,7 +16109,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -16128,7 +16128,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" } ], "type": { @@ -16150,7 +16150,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ] } @@ -16175,7 +16175,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "signatures": [ @@ -16285,7 +16285,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "parameters": [ @@ -16339,7 +16339,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -16362,7 +16362,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -16382,7 +16382,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ] } @@ -16399,7 +16399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" } ], "type": { @@ -16419,7 +16419,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 373, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" } ] } @@ -16444,7 +16444,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "type": { @@ -16463,7 +16463,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ], "type": { @@ -16485,7 +16485,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 377, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" } ] } @@ -16510,7 +16510,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "signatures": [ @@ -16620,7 +16620,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "parameters": [ @@ -16674,7 +16674,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -16697,7 +16697,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -16717,7 +16717,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ] } @@ -16734,7 +16734,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 329, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" } ], "type": { @@ -16754,7 +16754,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 327, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" } ] } @@ -16779,7 +16779,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ], "type": { @@ -16798,7 +16798,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -16820,7 +16820,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ] } @@ -16845,7 +16845,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "signatures": [ @@ -16939,7 +16939,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "parameters": [ @@ -16993,7 +16993,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "type": { @@ -17014,7 +17014,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ], "type": { @@ -17034,7 +17034,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 128, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" } ] } @@ -17059,7 +17059,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 133, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" } ], "type": { @@ -17078,7 +17078,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ], "type": { @@ -17100,7 +17100,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ] } @@ -17125,7 +17125,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "signatures": [ @@ -17221,7 +17221,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "parameters": [ @@ -17311,7 +17311,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ], "type": { @@ -17335,7 +17335,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -17355,7 +17355,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ] } @@ -17380,7 +17380,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ], "type": { @@ -17399,7 +17399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -17421,7 +17421,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" } ] } @@ -17449,7 +17449,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -17485,7 +17485,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -17559,7 +17559,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -17595,7 +17595,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -17626,7 +17626,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "signatures": [ @@ -17728,7 +17728,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "parameters": [ @@ -17787,7 +17787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 268, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" } ], "type": { @@ -17828,7 +17828,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "type": { @@ -17868,7 +17868,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 266, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" } ], "type": { @@ -17888,7 +17888,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 265, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" } ] } @@ -17925,7 +17925,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -17948,7 +17948,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -17968,7 +17968,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ] } @@ -17985,7 +17985,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 273, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" } ], "type": { @@ -18005,7 +18005,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ] } @@ -18030,7 +18030,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -18049,7 +18049,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -18071,7 +18071,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -18111,7 +18111,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" } ], "extendedTypes": [ @@ -18153,7 +18153,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" } ] }, @@ -18182,7 +18182,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "signatures": [ @@ -18197,7 +18197,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "parameters": [ @@ -18231,7 +18231,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "indexSignatures": [ @@ -18246,7 +18246,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "parameters": [ @@ -18536,9 +18536,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 576, + "line": 579, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L579" } ], "signatures": [ @@ -18638,9 +18638,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 576, + "line": 579, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L579" } ], "parameters": [ @@ -18750,9 +18750,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 582, + "line": 585, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" } ], "type": { @@ -18773,9 +18773,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 582, + "line": 585, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" } ], "type": { @@ -18793,9 +18793,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 582, + "line": 585, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" } ] } @@ -18810,9 +18810,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 583, + "line": 586, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L586" } ], "type": { @@ -18830,9 +18830,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 581, + "line": 584, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L584" } ] } @@ -18855,9 +18855,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 586, + "line": 589, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L586" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L589" } ], "type": { @@ -18874,9 +18874,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 587, + "line": 590, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L587" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L590" } ], "type": { @@ -18896,9 +18896,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 585, + "line": 588, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L588" } ] } @@ -18923,7 +18923,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" } ], "signatures": [ @@ -19017,7 +19017,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" } ], "parameters": [ @@ -19084,7 +19084,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 364, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" } ], "type": { @@ -19104,7 +19104,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 364, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" } ] } @@ -19141,7 +19141,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -19164,7 +19164,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -19183,7 +19183,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -19202,7 +19202,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -19222,7 +19222,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ] } @@ -19239,7 +19239,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 368, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L368" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L368" } ], "type": { @@ -19259,7 +19259,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 366, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L366" } ] } @@ -19284,7 +19284,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 371, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L371" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L371" } ], "type": { @@ -19303,7 +19303,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L372" } ], "type": { @@ -19325,7 +19325,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 370, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" } ] } @@ -19348,9 +19348,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 664, + "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L667" } ], "signatures": [ @@ -19462,9 +19462,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 664, + "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L667" } ], "parameters": [ @@ -19558,9 +19558,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 670, + "line": 673, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L670" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L673" } ], "type": { @@ -19587,9 +19587,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 668, + "line": 671, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L668" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L671" } ], "type": { @@ -19625,9 +19625,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 669, + "line": 672, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L669" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L672" } ], "type": { @@ -19647,9 +19647,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 667, + "line": 670, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L670" } ] } @@ -19684,9 +19684,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 677, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" } ], "type": { @@ -19707,9 +19707,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 677, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" } ], "type": { @@ -19727,9 +19727,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 677, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" } ] } @@ -19744,9 +19744,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 675, + "line": 678, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L675" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L678" } ], "type": { @@ -19764,9 +19764,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 673, + "line": 676, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L673" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L676" } ] } @@ -19789,9 +19789,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 678, + "line": 681, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L678" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L681" } ], "type": { @@ -19808,9 +19808,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 679, + "line": 682, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L682" } ], "type": { @@ -19830,9 +19830,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 677, + "line": 680, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L680" } ] } @@ -19855,9 +19855,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 758, + "line": 761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" } ], "signatures": [ @@ -19949,9 +19949,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 758, + "line": 761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" } ], "parameters": [ @@ -20048,9 +20048,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 761, + "line": 764, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" } ], "type": { @@ -20077,9 +20077,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 761, + "line": 764, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" } ], "type": { @@ -20106,9 +20106,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 761, + "line": 764, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" } ] } @@ -20143,9 +20143,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -20168,9 +20168,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -20196,9 +20196,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -20224,9 +20224,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -20253,9 +20253,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ] } @@ -20271,9 +20271,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 765, + "line": 768, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L768" } ], "type": { @@ -20291,9 +20291,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 763, + "line": 766, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L766" } ] } @@ -20316,9 +20316,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 768, + "line": 771, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L768" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L771" } ], "type": { @@ -20335,9 +20335,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 769, + "line": 772, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" } ], "type": { @@ -20357,9 +20357,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 767, + "line": 770, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L770" } ] } @@ -20382,9 +20382,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "signatures": [ @@ -20514,9 +20514,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "typeParameters": [ @@ -20546,9 +20546,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "type": { @@ -20567,9 +20567,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "type": { @@ -20589,9 +20589,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ] } @@ -20685,9 +20685,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 951, + "line": 954, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L951" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L954" } ], "signatures": [ @@ -20738,9 +20738,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 951, + "line": 954, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L951" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L954" } ], "parameters": [ @@ -20800,9 +20800,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 953, + "line": 956, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L953" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L956" } ], "type": { @@ -20819,9 +20819,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 954, + "line": 957, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L954" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L957" } ], "type": { @@ -20839,9 +20839,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 952, + "line": 955, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L952" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L955" } ] } @@ -20864,9 +20864,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 957, + "line": 960, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L960" } ], "type": { @@ -20883,9 +20883,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 958, + "line": 961, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L958" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L961" } ], "type": { @@ -20905,9 +20905,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 956, + "line": 959, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L956" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L959" } ] } @@ -20930,9 +20930,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1049, + "line": 1052, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1052" } ], "signatures": [ @@ -21036,9 +21036,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1049, + "line": 1052, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1052" } ], "parameters": [ @@ -21105,9 +21105,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1054, + "line": 1057, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1054" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1057" } ], "type": { @@ -21134,9 +21134,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1052, + "line": 1055, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1052" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1055" } ], "type": { @@ -21172,9 +21172,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1053, + "line": 1056, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" } ], "type": { @@ -21194,9 +21194,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1051, + "line": 1054, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1051" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1054" } ] } @@ -21221,9 +21221,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ], "type": { @@ -21244,9 +21244,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ], "type": { @@ -21264,9 +21264,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ] } @@ -21282,9 +21282,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ] } @@ -21301,9 +21301,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 915, + "line": 918, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L915" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L918" } ], "signatures": [ @@ -21370,9 +21370,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 915, + "line": 918, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L915" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L918" } ], "parameters": [ @@ -21432,9 +21432,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 917, + "line": 920, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L920" } ], "type": { @@ -21461,9 +21461,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 918, + "line": 921, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L918" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L921" } ], "type": { @@ -21481,9 +21481,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 916, + "line": 919, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L916" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L919" } ] } @@ -21506,9 +21506,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 921, + "line": 924, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L921" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L924" } ], "type": { @@ -21525,9 +21525,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 922, + "line": 925, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L922" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L925" } ], "type": { @@ -21547,9 +21547,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 920, + "line": 923, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L923" } ] } @@ -21572,9 +21572,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1276, + "line": 1279, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1279" } ], "signatures": [ @@ -21748,9 +21748,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1276, + "line": 1279, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1279" } ], "parameters": [ @@ -21850,9 +21850,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1282, + "line": 1285, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1282" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1285" } ], "type": { @@ -21874,9 +21874,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1283, + "line": 1286, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1283" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1286" } ], "type": { @@ -21894,9 +21894,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1281, + "line": 1284, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1284" } ] } @@ -21919,9 +21919,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1286, + "line": 1289, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1286" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1289" } ], "type": { @@ -21938,9 +21938,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1287, + "line": 1290, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1287" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1290" } ], "type": { @@ -21960,9 +21960,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1285, + "line": 1288, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1288" } ] } @@ -21985,9 +21985,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1348, + "line": 1351, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1351" } ], "signatures": [ @@ -22087,9 +22087,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1348, + "line": 1351, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1351" } ], "parameters": [ @@ -22168,9 +22168,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1353, + "line": 1356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1356" } ], "type": { @@ -22189,9 +22189,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1354, + "line": 1357, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1354" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1357" } ], "type": { @@ -22209,9 +22209,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1352, + "line": 1355, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1355" } ] } @@ -22234,9 +22234,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1357, + "line": 1360, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1360" } ], "type": { @@ -22253,9 +22253,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1358, + "line": 1361, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1358" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1361" } ], "type": { @@ -22275,9 +22275,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1356, + "line": 1359, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1359" } ] } @@ -22300,9 +22300,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 514, + "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L517" } ], "signatures": [ @@ -22402,9 +22402,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 514, + "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L517" } ], "parameters": [ @@ -22514,9 +22514,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 520, + "line": 523, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" } ], "type": { @@ -22537,9 +22537,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 520, + "line": 523, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" } ], "type": { @@ -22557,9 +22557,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 520, + "line": 523, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" } ] } @@ -22574,9 +22574,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 521, + "line": 524, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L524" } ], "type": { @@ -22594,9 +22594,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 519, + "line": 522, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L522" } ] } @@ -22619,9 +22619,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 524, + "line": 527, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L527" } ], "type": { @@ -22638,9 +22638,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 525, + "line": 528, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" } ], "type": { @@ -22660,9 +22660,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 523, + "line": 526, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L526" } ] } @@ -22685,9 +22685,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1112, + "line": 1115, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1115" } ], "signatures": [ @@ -22795,9 +22795,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1112, + "line": 1115, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1115" } ], "parameters": [ @@ -22860,9 +22860,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1114, + "line": 1117, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1117" } ], "type": { @@ -22884,9 +22884,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1115, + "line": 1118, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1118" } ], "type": { @@ -22904,9 +22904,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1113, + "line": 1116, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1116" } ] } @@ -22929,9 +22929,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1118, + "line": 1121, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1121" } ], "type": { @@ -22948,9 +22948,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1119, + "line": 1122, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1122" } ], "type": { @@ -22970,9 +22970,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1117, + "line": 1120, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1120" } ] } @@ -23000,7 +23000,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -23036,7 +23036,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -23110,7 +23110,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -23146,7 +23146,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -23175,9 +23175,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1377, + "line": 1380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1380" } ], "signatures": [ @@ -23190,9 +23190,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1377, + "line": 1380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1380" } ], "parameters": [ @@ -23224,9 +23224,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 454, + "line": 457, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" } ], "signatures": [ @@ -23268,7 +23268,7 @@ "content": [ { "kind": "code", - "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', avatarFile, {\n cacheControl: '3600',\n upsert: true\n })\n```" + "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', avatarFile, {\n cacheControl: '3600'\n })\n```" }, { "kind": "text", @@ -23327,7 +23327,23 @@ }, { "kind": "text", - "text": "\n- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works\n- For React Native, using either " + "text": "\n- " + }, + { + "kind": "code", + "text": "`update()`" + }, + { + "kind": "text", + "text": " always replaces the file at the given path regardless of the " + }, + { + "kind": "code", + "text": "`upsert`" + }, + { + "kind": "text", + "text": " option.\n- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works\n- For React Native, using either " }, { "kind": "code", @@ -23368,9 +23384,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 454, + "line": 457, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" } ], "parameters": [ @@ -23564,7 +23580,39 @@ "summary": [ { "kind": "text", - "text": "Optional file upload options including cacheControl, contentType, upsert, and metadata." + "text": "Optional file upload options including cacheControl, contentType, and metadata.\n**Note:** The " + }, + { + "kind": "code", + "text": "`upsert`" + }, + { + "kind": "text", + "text": " option has no effect here. " + }, + { + "kind": "code", + "text": "`update()`" + }, + { + "kind": "text", + "text": " always replaces the\nfile at the given path, so the " + }, + { + "kind": "code", + "text": "`x-upsert`" + }, + { + "kind": "text", + "text": " header is not sent. To control upsert\nbehavior, use " + }, + { + "kind": "code", + "text": "`upload()`" + }, + { + "kind": "text", + "text": " instead." } ] }, @@ -23604,9 +23652,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -23627,9 +23675,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -23646,9 +23694,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -23665,9 +23713,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -23685,9 +23733,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ] } @@ -23702,9 +23750,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 471, + "line": 474, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L474" } ], "type": { @@ -23722,9 +23770,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 469, + "line": 472, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L472" } ] } @@ -23747,9 +23795,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 474, + "line": 477, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" } ], "type": { @@ -23766,9 +23814,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 475, + "line": 478, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L478" } ], "type": { @@ -23788,9 +23836,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 473, + "line": 476, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" } ] } @@ -23815,7 +23863,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 203, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" } ], "signatures": [ @@ -23975,7 +24023,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 203, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" } ], "parameters": [ @@ -24084,7 +24132,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -24107,7 +24155,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -24126,7 +24174,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -24145,7 +24193,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -24165,7 +24213,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ] } @@ -24182,7 +24230,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 210, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" } ], "type": { @@ -24202,7 +24250,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 208, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L208" } ] } @@ -24227,7 +24275,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 213, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L213" } ], "type": { @@ -24246,7 +24294,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L214" } ], "type": { @@ -24268,7 +24316,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 212, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L212" } ] } @@ -24293,7 +24341,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 257, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" } ], "signatures": [ @@ -24387,7 +24435,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 257, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" } ], "parameters": [ @@ -24543,7 +24591,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -24562,7 +24610,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -24584,7 +24632,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -24609,7 +24657,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -24632,7 +24680,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 322, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" } ], "type": { @@ -24652,7 +24700,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 322, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" } ], "type": { @@ -24673,7 +24721,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 322, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" } ] } @@ -24690,7 +24738,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -24710,7 +24758,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -24755,7 +24803,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "extendedTypes": [ @@ -24790,7 +24838,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" } ] }, @@ -24832,7 +24880,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" } ], "signatures": [ @@ -24887,7 +24935,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" } ], "parameters": [ @@ -24985,7 +25033,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 155, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" } ], "signatures": [ @@ -25039,7 +25087,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 155, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" } ], "parameters": [ @@ -25110,7 +25158,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" } ], "signatures": [ @@ -25164,7 +25212,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" } ], "parameters": [ @@ -25235,7 +25283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" } ], "signatures": [ @@ -25289,7 +25337,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" } ], "parameters": [ @@ -25333,7 +25381,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ], "signatures": [ @@ -25387,7 +25435,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ], "parameters": [ @@ -25442,7 +25490,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ], "type": { @@ -25464,7 +25512,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ] } @@ -25501,7 +25549,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" } ], "signatures": [ @@ -25555,7 +25603,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" } ], "parameters": [ @@ -25634,7 +25682,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -25671,7 +25719,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -25745,7 +25793,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -25782,7 +25830,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -25828,7 +25876,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" } ], "extendedTypes": [ @@ -25867,7 +25915,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 266, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" } ], "signatures": [ @@ -25912,7 +25960,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 266, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" } ], "parameters": [ @@ -25946,7 +25994,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 268, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" } ], "indexSignatures": [ @@ -25961,7 +26009,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 268, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" } ], "parameters": [ @@ -26249,7 +26297,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 303, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" } ], "signatures": [ @@ -26303,7 +26351,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 303, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" } ], "parameters": [ @@ -26391,7 +26439,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 379, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" } ], "signatures": [ @@ -26445,7 +26493,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 379, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" } ], "parameters": [ @@ -26516,7 +26564,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 356, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" } ], "signatures": [ @@ -26570,7 +26618,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 356, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" } ], "parameters": [ @@ -26625,7 +26673,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ], "type": { @@ -26647,7 +26695,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ] } @@ -26684,7 +26732,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" } ], "signatures": [ @@ -26738,7 +26786,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" } ], "parameters": [ @@ -26782,7 +26830,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 329, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" } ], "signatures": [ @@ -26836,7 +26884,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 329, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" } ], "parameters": [ @@ -26930,7 +26978,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -26967,7 +27015,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -27041,7 +27089,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -27078,7 +27126,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -27124,7 +27172,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 250, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L250" } ], "extendedTypes": [ @@ -27163,7 +27211,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" } ], "signatures": [ @@ -27208,7 +27256,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" } ], "parameters": [ @@ -27242,7 +27290,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 454, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" } ], "indexSignatures": [ @@ -27257,7 +27305,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 454, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" } ], "parameters": [ @@ -27556,7 +27604,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" } ], "signatures": [ @@ -27610,7 +27658,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" } ], "parameters": [ @@ -27707,7 +27755,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 521, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" } ], "signatures": [ @@ -27761,7 +27809,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 521, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" } ], "parameters": [ @@ -27860,7 +27908,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 551, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" } ], "signatures": [ @@ -27914,7 +27962,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 551, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" } ], "parameters": [ @@ -28014,7 +28062,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 491, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" } ], "signatures": [ @@ -28068,7 +28116,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 491, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" } ], "parameters": [ @@ -28165,7 +28213,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 586, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" } ], "signatures": [ @@ -28219,7 +28267,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 586, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" } ], "parameters": [ @@ -28321,7 +28369,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -28358,7 +28406,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -28432,7 +28480,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -28469,7 +28517,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -28515,7 +28563,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 434, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L434" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L434" } ], "extendedTypes": [ @@ -28565,7 +28613,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" } ], "type": { @@ -28803,7 +28851,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "type": { @@ -28819,7 +28867,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "indexSignatures": [ @@ -28834,7 +28882,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "parameters": [ @@ -28871,7 +28919,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 26, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" } ] } @@ -28891,7 +28939,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" } ] }, @@ -28920,7 +28968,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "signatures": [ @@ -28935,7 +28983,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "parameters": [ @@ -28958,7 +29006,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "signatures": [ @@ -28973,7 +29021,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "type": { @@ -29034,7 +29082,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "signatures": [ @@ -29068,7 +29116,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "typeParameters": [ @@ -29151,7 +29199,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "signatures": [ @@ -29166,7 +29214,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "parameters": [ @@ -29274,7 +29322,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "signatures": [ @@ -29289,7 +29337,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "parameters": [ @@ -29402,7 +29450,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 4, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" } ], "implementedTypes": [ @@ -29448,7 +29496,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" } ] }, @@ -29463,7 +29511,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" } ] }, @@ -29478,7 +29526,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorDataApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" } ] }, @@ -29520,7 +29568,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" } ], "type": { @@ -29543,7 +29591,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" } ], "type": { @@ -29566,7 +29614,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" } ], "type": { @@ -29591,7 +29639,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" } ], "type": { @@ -29616,7 +29664,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" } ], "type": { @@ -29641,7 +29689,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" } ], "type": { @@ -29661,7 +29709,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" } ] } @@ -29677,7 +29725,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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 69f8a33c2a38d..d46b7059cbf95 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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L58" } ], "extendedTypes": [ @@ -584,7 +584,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L34" } ], "signatures": [ @@ -638,7 +638,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L34" } ], "parameters": [ @@ -672,7 +672,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L36" } ], "indexSignatures": [ @@ -687,7 +687,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L36" } ], "parameters": [ @@ -980,7 +980,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 87, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L87" } ], "getSignature": { @@ -1023,7 +1023,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 87, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L87" } ], "type": { @@ -1046,7 +1046,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 69, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L69" } ], "getSignature": { @@ -1089,7 +1089,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 69, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L69" } ], "type": { @@ -1113,7 +1113,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "signatures": [ @@ -1209,7 +1209,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "parameters": [ @@ -1268,7 +1268,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ], "type": { @@ -1309,7 +1309,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" } ], "type": { @@ -1349,7 +1349,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "type": { @@ -1390,7 +1390,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -1412,7 +1412,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 187, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" } ] } @@ -1450,7 +1450,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 197, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" } ], "type": { @@ -1486,7 +1486,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 198, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" } ], "type": { @@ -1506,7 +1506,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 196, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" } ] } @@ -1531,7 +1531,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -1550,7 +1550,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" } ], "type": { @@ -1572,7 +1572,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ] } @@ -1609,7 +1609,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "signatures": [ @@ -1721,7 +1721,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "parameters": [ @@ -1775,7 +1775,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -1798,7 +1798,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -1818,7 +1818,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ] } @@ -1835,7 +1835,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" } ], "type": { @@ -1855,7 +1855,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 373, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" } ] } @@ -1880,7 +1880,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "type": { @@ -1899,7 +1899,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ], "type": { @@ -1921,7 +1921,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 377, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" } ] } @@ -1958,7 +1958,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "signatures": [ @@ -2070,7 +2070,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "parameters": [ @@ -2124,7 +2124,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -2147,7 +2147,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -2167,7 +2167,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ] } @@ -2184,7 +2184,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 329, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" } ], "type": { @@ -2204,7 +2204,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 327, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" } ] } @@ -2229,7 +2229,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ], "type": { @@ -2248,7 +2248,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -2270,7 +2270,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ] } @@ -2305,7 +2305,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L54" } ], "signatures": [ @@ -2349,7 +2349,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L54" } ], "parameters": [ @@ -2396,7 +2396,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "signatures": [ @@ -2492,7 +2492,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "parameters": [ @@ -2546,7 +2546,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "type": { @@ -2567,7 +2567,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ], "type": { @@ -2587,7 +2587,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 128, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" } ] } @@ -2612,7 +2612,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 133, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" } ], "type": { @@ -2631,7 +2631,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ], "type": { @@ -2653,7 +2653,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ] } @@ -2690,7 +2690,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "signatures": [ @@ -2788,7 +2788,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "parameters": [ @@ -2878,7 +2878,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ], "type": { @@ -2902,7 +2902,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -2922,7 +2922,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ] } @@ -2947,7 +2947,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ], "type": { @@ -2966,7 +2966,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -2988,7 +2988,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" } ] } @@ -3026,7 +3026,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -3062,7 +3062,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -3136,7 +3136,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -3172,7 +3172,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -3205,7 +3205,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "signatures": [ @@ -3309,7 +3309,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "parameters": [ @@ -3368,7 +3368,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 268, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" } ], "type": { @@ -3409,7 +3409,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "type": { @@ -3449,7 +3449,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 266, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" } ], "type": { @@ -3469,7 +3469,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 265, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" } ] } @@ -3506,7 +3506,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -3529,7 +3529,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -3549,7 +3549,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ] } @@ -3566,7 +3566,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 273, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" } ], "type": { @@ -3586,7 +3586,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ] } @@ -3611,7 +3611,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -3630,7 +3630,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -3652,7 +3652,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -3714,7 +3714,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L11" } ], "extendedTypes": [ @@ -3752,7 +3752,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "signatures": [ @@ -3767,7 +3767,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "parameters": [ @@ -3853,7 +3853,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -3881,7 +3881,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -3909,7 +3909,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -3924,7 +3924,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -3947,7 +3947,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -3966,7 +3966,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -3985,7 +3985,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -4013,7 +4013,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -4042,7 +4042,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -4070,7 +4070,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L11" } ], "extendedTypes": [ @@ -4128,7 +4128,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "signatures": [ @@ -4143,7 +4143,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "parameters": [ @@ -4214,7 +4214,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -4235,7 +4235,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -4270,7 +4270,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -4305,7 +4305,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -4322,7 +4322,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -4345,7 +4345,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -4364,7 +4364,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -4383,7 +4383,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -4411,7 +4411,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -4440,7 +4440,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -4478,7 +4478,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L90" } ], "extendedTypes": [ @@ -4529,7 +4529,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "signatures": [ @@ -4544,7 +4544,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "parameters": [ @@ -4614,7 +4614,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -4640,7 +4640,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -4666,7 +4666,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -4683,7 +4683,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -4706,7 +4706,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -4725,7 +4725,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -4744,7 +4744,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -4772,7 +4772,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -4801,7 +4801,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -4839,7 +4839,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 127, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L127" } ], "extendedTypes": [ @@ -4883,7 +4883,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "signatures": [ @@ -4898,7 +4898,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "parameters": [ @@ -4946,7 +4946,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -4981,7 +4981,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -5016,7 +5016,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -5033,7 +5033,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -5056,7 +5056,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -5075,7 +5075,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -5094,7 +5094,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -5122,7 +5122,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -5151,7 +5151,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -5189,7 +5189,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 108, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L108" } ], "extendedTypes": [ @@ -5233,7 +5233,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "signatures": [ @@ -5248,7 +5248,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "parameters": [ @@ -5307,7 +5307,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -5333,7 +5333,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -5368,7 +5368,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -5403,7 +5403,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -5420,7 +5420,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -5443,7 +5443,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -5462,7 +5462,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -5481,7 +5481,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -5509,7 +5509,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -5538,7 +5538,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -5576,7 +5576,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 137, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L137" } ], "extendedTypes": [ @@ -5622,7 +5622,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 42, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L42" } ], "type": { @@ -5649,7 +5649,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L40" } ], "type": { @@ -5676,7 +5676,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L36" } ], "type": { @@ -5703,7 +5703,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L38" } ], "type": { @@ -5730,7 +5730,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L44" } ], "type": { @@ -5750,7 +5750,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 34, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L34" } ] }, @@ -5774,7 +5774,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L16" } ], "type": { @@ -5796,7 +5796,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L17" } ], "type": { @@ -5817,7 +5817,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L15" } ], "type": { @@ -5836,7 +5836,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L11" } ], "type": { @@ -5855,7 +5855,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L13" } ], "type": { @@ -5874,7 +5874,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L14" } ], "type": { @@ -5893,7 +5893,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L19" } ], "type": { @@ -5914,7 +5914,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L12" } ], "type": { @@ -5935,7 +5935,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L18" } ], "type": { @@ -5955,7 +5955,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 10, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L10" } ] }, @@ -5993,7 +5993,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L549" } ], "type": { @@ -6020,7 +6020,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L550" } ], "type": { @@ -6050,7 +6050,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L548" } ], "type": { @@ -6070,7 +6070,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 547, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L547" } ] }, @@ -6094,7 +6094,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L176" } ], "type": { @@ -6114,7 +6114,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 175, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L175" } ] }, @@ -6154,7 +6154,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L362" } ], "type": { @@ -6183,7 +6183,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L363" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L363" } ], "type": { @@ -6203,7 +6203,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 361, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L361" } ] }, @@ -6241,7 +6241,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 646, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L646" } ], "type": { @@ -6268,7 +6268,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 647, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L647" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L647" } ], "type": { @@ -6290,7 +6290,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 645, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L645" } ] }, @@ -6322,7 +6322,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L296" } ], "type": { @@ -6376,7 +6376,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 285, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L285" } ], "type": { @@ -6401,7 +6401,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 281, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L281" } ] }, @@ -6439,7 +6439,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L59" } ], "type": { @@ -6466,7 +6466,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L63" } ], "type": { @@ -6493,7 +6493,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L53" } ], "type": { @@ -6520,7 +6520,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L65" } ], "type": { @@ -6547,7 +6547,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L61" } ], "type": { @@ -6574,7 +6574,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L57" } ], "type": { @@ -6601,7 +6601,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L55" } ], "type": { @@ -6621,7 +6621,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 51, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L51" } ], "indexSignatures": [ @@ -6644,7 +6644,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L67" } ], "parameters": [ @@ -6709,7 +6709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L94" } ], "type": { @@ -6744,7 +6744,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L104" } ], "type": { @@ -6773,7 +6773,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L85" } ], "type": { @@ -6809,7 +6809,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L81" } ], "type": { @@ -6851,7 +6851,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L87" } ], "type": { @@ -6887,7 +6887,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L89" } ], "type": { @@ -6925,7 +6925,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L79" } ], "type": { @@ -6960,7 +6960,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L99" } ], "type": { @@ -6987,7 +6987,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L83" } ], "type": { @@ -7016,7 +7016,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 77, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L77" } ] }, @@ -7054,7 +7054,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L119" } ], "type": { @@ -7083,7 +7083,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L125" } ], "type": { @@ -7112,7 +7112,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L127" } ], "type": { @@ -7139,7 +7139,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L121" } ], "type": { @@ -7168,7 +7168,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L129" } ], "type": { @@ -7195,7 +7195,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L113" } ], "type": { @@ -7224,7 +7224,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L131" } ], "type": { @@ -7253,7 +7253,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L133" } ], "type": { @@ -7282,7 +7282,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L117" } ], "type": { @@ -7311,7 +7311,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L123" } ], "type": { @@ -7346,7 +7346,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L138" } ], "type": { @@ -7373,7 +7373,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L115" } ], "type": { @@ -7393,7 +7393,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 111, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L111" } ] }, @@ -7433,7 +7433,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L150" } ], "type": { @@ -7510,7 +7510,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 154, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L154" } ], "type": { @@ -7539,7 +7539,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L162" } ], "type": { @@ -7568,7 +7568,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 172, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L172" } ], "type": { @@ -7612,7 +7612,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 167, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L167" } ], "type": { @@ -7656,7 +7656,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L158" } ], "type": { @@ -7676,7 +7676,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 146, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L146" } ] }, @@ -7714,7 +7714,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L515" } ], "type": { @@ -7741,7 +7741,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L516" } ], "type": { @@ -7773,7 +7773,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L517" } ], "type": { @@ -7802,7 +7802,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 518, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L518" } ], "type": { @@ -7829,7 +7829,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 514, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L514" } ], "type": { @@ -7849,7 +7849,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 513, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L513" } ] }, @@ -7887,7 +7887,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 526, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L526" } ], "type": { @@ -7912,7 +7912,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 525, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L525" } ] }, @@ -7936,7 +7936,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L23" } ], "type": { @@ -7957,7 +7957,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L24" } ], "type": { @@ -7978,7 +7978,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L27" } ], "type": { @@ -7999,7 +7999,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L25" } ], "type": { @@ -8037,7 +8037,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L26" } ], "type": { @@ -8066,7 +8066,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L22" } ] }, @@ -8106,7 +8106,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L491" } ], "type": { @@ -8135,7 +8135,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L492" } ], "type": { @@ -8164,7 +8164,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L490" } ], "type": { @@ -8191,7 +8191,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L489" } ], "type": { @@ -8211,7 +8211,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 488, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L488" } ] }, @@ -8249,7 +8249,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -8274,7 +8274,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -8294,7 +8294,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L501" } ] } @@ -8322,7 +8322,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L502" } ], "type": { @@ -8342,7 +8342,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 500, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L500" } ] }, @@ -8382,7 +8382,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L467" } ], "type": { @@ -8411,7 +8411,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L468" } ], "type": { @@ -8440,7 +8440,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L466" } ], "type": { @@ -8460,7 +8460,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 465, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L465" } ] }, @@ -8500,7 +8500,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L478" } ], "type": { @@ -8527,7 +8527,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -8552,7 +8552,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -8572,7 +8572,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L477" } ] } @@ -8591,7 +8591,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 476, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L476" } ] }, @@ -8629,7 +8629,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 567, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L567" } ], "type": { @@ -8658,7 +8658,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 568, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L568" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L568" } ], "type": { @@ -8687,7 +8687,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L569" } ], "type": { @@ -8716,7 +8716,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L570" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L570" } ], "type": { @@ -8745,7 +8745,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L571" } ], "type": { @@ -8774,7 +8774,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 572, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L572" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L572" } ], "type": { @@ -8803,7 +8803,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 573, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L573" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L573" } ], "type": { @@ -8830,7 +8830,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L566" } ], "type": { @@ -8850,7 +8850,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 565, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L565" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L565" } ] }, @@ -8890,7 +8890,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 583, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L583" } ], "type": { @@ -8917,7 +8917,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 582, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L582" } ], "type": { @@ -8942,7 +8942,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 581, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L581" } ] }, @@ -8964,7 +8964,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L301" } ], "type": { @@ -8984,7 +8984,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 300, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L300" } ] }, @@ -9024,7 +9024,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L384" } ], "type": { @@ -9047,7 +9047,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 383, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L383" } ] }, @@ -9085,7 +9085,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 537, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L537" } ], "type": { @@ -9112,7 +9112,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L536" } ], "type": { @@ -9139,7 +9139,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L538" } ], "type": { @@ -9164,7 +9164,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 535, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L535" } ] }, @@ -9204,7 +9204,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 607, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L607" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L607" } ], "type": { @@ -9233,7 +9233,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L604" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L604" } ], "type": { @@ -9260,7 +9260,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L605" } ], "type": { @@ -9291,7 +9291,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 608, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L608" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L608" } ], "type": { @@ -9320,7 +9320,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 609, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L609" } ], "type": { @@ -9349,7 +9349,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L606" } ], "type": { @@ -9376,7 +9376,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 603, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L603" } ], "type": { @@ -9396,7 +9396,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 602, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L602" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L602" } ] }, @@ -9436,7 +9436,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L619" } ], "type": { @@ -9465,7 +9465,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L618" } ], "type": { @@ -9490,7 +9490,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L617" } ] }, @@ -9533,7 +9533,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L184" } ], "type": { @@ -9562,7 +9562,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L189" } ], "type": { @@ -9591,7 +9591,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L199" } ], "type": { @@ -9620,7 +9620,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 194, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L194" } ], "type": { @@ -9642,7 +9642,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 179, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L179" } ] }, @@ -9682,7 +9682,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 271, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L271" } ], "type": { @@ -9709,7 +9709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L269" } ], "type": { @@ -9729,7 +9729,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 267, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L267" } ] }, @@ -9767,7 +9767,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L257" } ], "type": { @@ -9794,7 +9794,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L253" } ], "type": { @@ -9823,7 +9823,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L251" } ], "type": { @@ -9856,7 +9856,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L261" } ], "type": { @@ -9883,7 +9883,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L259" } ], "type": { @@ -9921,7 +9921,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L249" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L249" } ], "type": { @@ -9948,7 +9948,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L255" } ], "type": { @@ -9968,7 +9968,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 247, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L247" } ] }, @@ -10000,7 +10000,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L222" } ], "type": { @@ -10040,7 +10040,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 212, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L212" } ], "type": { @@ -10069,7 +10069,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L217" } ], "type": { @@ -10109,7 +10109,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L239" } ], "type": { @@ -10167,7 +10167,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L233" } ], "type": { @@ -10187,7 +10187,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 207, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L207" } ] }, @@ -10209,7 +10209,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 276, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L276" } ], "type": { @@ -10233,7 +10233,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L275" } ], "type": { @@ -10254,7 +10254,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 278, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L278" } ], "type": { @@ -10273,7 +10273,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L277" } ], "type": { @@ -10298,7 +10298,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 274, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L274" } ] }, @@ -10322,7 +10322,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L142" } ], "type": { @@ -10343,7 +10343,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L143" } ], "type": { @@ -10363,7 +10363,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 141, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L141" } ] }, @@ -10385,7 +10385,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L203" } ], "type": { @@ -10419,7 +10419,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 204, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L204" } ], "type": { @@ -10448,7 +10448,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 202, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L202" } ] }, @@ -10472,7 +10472,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L8" } ], "type": { @@ -10492,7 +10492,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 7, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/StorageClient.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/StorageClient.ts#L7" } ] }, @@ -10530,7 +10530,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L636" } ], "type": { @@ -10561,7 +10561,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L637" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L637" } ], "type": { @@ -10581,7 +10581,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L635" } ], "typeParameters": [ @@ -10622,7 +10622,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L332" } ], "type": { @@ -10651,7 +10651,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L312" } ], "type": { @@ -10680,7 +10680,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L325" } ], "type": { @@ -10709,7 +10709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L319" } ], "type": { @@ -10751,7 +10751,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L308" } ], "type": { @@ -10771,7 +10771,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 304, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L304" } ] }, @@ -10811,7 +10811,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L374" } ], "type": { @@ -10840,7 +10840,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L375" } ], "type": { @@ -10869,7 +10869,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L373" } ], "type": { @@ -10889,7 +10889,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 372, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L372" } ] }, @@ -10927,7 +10927,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L424" } ], "type": { @@ -10950,7 +10950,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 423, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L423" } ] }, @@ -10990,7 +10990,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 627, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L627" } ], "type": { @@ -11015,7 +11015,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 626, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L626" } ] }, @@ -11055,7 +11055,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L415" } ], "type": { @@ -11082,7 +11082,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L411" } ], "type": { @@ -11109,7 +11109,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 412, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L412" } ], "type": { @@ -11136,7 +11136,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L413" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L413" } ], "type": { @@ -11165,7 +11165,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L409" } ], "type": { @@ -11194,7 +11194,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L414" } ], "type": { @@ -11223,7 +11223,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L410" } ], "type": { @@ -11243,7 +11243,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 408, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L408" } ] }, @@ -11283,7 +11283,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L454" } ], "type": { @@ -11314,7 +11314,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L456" } ], "type": { @@ -11341,7 +11341,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L453" } ], "type": { @@ -11370,7 +11370,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L455" } ], "type": { @@ -11392,7 +11392,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 452, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L452" } ] }, @@ -11430,7 +11430,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L441" } ], "type": { @@ -11459,7 +11459,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 440, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L440" } ], "type": { @@ -11488,7 +11488,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L442" } ], "type": { @@ -11510,7 +11510,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 439, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L439" } ] }, @@ -11533,7 +11533,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 654, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L654" } ], "typeParameters": [ @@ -11591,7 +11591,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L8" } ], "type": { @@ -11619,7 +11619,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 339, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L339" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L339" } ], "typeParameters": [ @@ -11722,7 +11722,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 396, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L396" } ], "type": { @@ -11754,7 +11754,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 343, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L343" } ], "typeParameters": [ @@ -11789,7 +11789,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 345, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L345" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L345" } ], "type": { @@ -11811,7 +11811,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 346, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L346" } ], "type": { @@ -11831,7 +11831,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 344, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L344" } ] } @@ -11856,7 +11856,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 349, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L349" } ], "type": { @@ -11875,7 +11875,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 350, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L350" } ], "type": { @@ -11897,7 +11897,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 348, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L348" } ] } @@ -11924,7 +11924,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 5, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L5" } ], "type": { @@ -11960,7 +11960,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 391, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L391" } ], "type": { @@ -11987,7 +11987,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 590, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L590" } ], "type": { @@ -12029,7 +12029,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 431, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/types.ts#L431" } ], "type": { @@ -12063,7 +12063,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "signatures": [ @@ -12097,7 +12097,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "parameters": [ @@ -12146,7 +12146,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "signatures": [ @@ -12180,7 +12180,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "parameters": [ @@ -12229,7 +12229,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 15, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L15" } ], "target": 896 @@ -12245,7 +12245,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 3, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L3" } ], "target": 48 @@ -12261,7 +12261,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L7" } ], "target": 549 @@ -12277,7 +12277,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 11, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L11" } ], "target": 536 @@ -12293,7 +12293,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L8" } ], "target": 604 @@ -12309,7 +12309,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L9" } ], "target": 672 @@ -12350,7 +12350,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/index.ts#L1" } ] }, @@ -12379,7 +12379,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "signatures": [ @@ -12394,7 +12394,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "parameters": [ @@ -12417,7 +12417,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "signatures": [ @@ -12432,7 +12432,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "type": { @@ -12495,7 +12495,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" } ], "type": { @@ -12520,7 +12520,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "signatures": [ @@ -12535,7 +12535,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "type": { @@ -12559,7 +12559,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "signatures": [ @@ -12593,7 +12593,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "typeParameters": [ @@ -12646,7 +12646,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "signatures": [ @@ -12661,7 +12661,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "parameters": [ @@ -12779,7 +12779,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -12813,7 +12813,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "parameters": [ @@ -12853,7 +12853,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -12868,7 +12868,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "type": { @@ -12935,7 +12935,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "signatures": [ @@ -12969,7 +12969,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "typeParameters": [ @@ -13046,7 +13046,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "signatures": [ @@ -13061,7 +13061,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "parameters": [ @@ -13163,7 +13163,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "signatures": [ @@ -13178,7 +13178,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "parameters": [ @@ -13295,7 +13295,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 5, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" } ], "implementedTypes": [ @@ -13341,7 +13341,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" } ] }, @@ -13378,7 +13378,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "signatures": [ @@ -13433,7 +13433,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "parameters": [ @@ -13483,7 +13483,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "indexSignatures": [ @@ -13498,7 +13498,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 49, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L49" } ], "parameters": [ @@ -13785,7 +13785,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" } ], "signatures": [ @@ -13856,7 +13856,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" } ], "parameters": [ @@ -13910,7 +13910,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 95, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ], "type": { @@ -13931,7 +13931,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 96, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" } ], "type": { @@ -13951,7 +13951,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 94, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L94" } ] } @@ -13976,7 +13976,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 99, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L99" } ], "type": { @@ -13995,7 +13995,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 100, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" } ], "type": { @@ -14017,7 +14017,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" } ] } @@ -14042,7 +14042,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" } ], "signatures": [ @@ -14113,7 +14113,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" } ], "parameters": [ @@ -14167,7 +14167,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" } ], "type": { @@ -14190,7 +14190,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 226, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" } ], "type": { @@ -14210,7 +14210,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 226, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" } ] } @@ -14227,7 +14227,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 227, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227" } ], "type": { @@ -14247,7 +14247,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L225" } ] } @@ -14272,7 +14272,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ], "type": { @@ -14291,7 +14291,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 231, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" } ], "type": { @@ -14313,7 +14313,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" } ] } @@ -14338,7 +14338,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 367, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" } ], "signatures": [ @@ -14512,7 +14512,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 367, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L367" } ], "parameters": [ @@ -14556,7 +14556,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" } ], "signatures": [ @@ -14627,7 +14627,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" } ], "parameters": [ @@ -14677,7 +14677,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 159, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L159" } ], "type": { @@ -14706,7 +14706,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 160, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160" } ], "type": { @@ -14735,7 +14735,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" } ], "type": { @@ -14764,7 +14764,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "type": { @@ -14806,7 +14806,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 162, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" } ], "type": { @@ -14835,7 +14835,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 158, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" } ] } @@ -14872,7 +14872,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 166, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" } ], "type": { @@ -14896,7 +14896,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 167, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L167" } ], "type": { @@ -14916,7 +14916,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 165, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" } ] } @@ -14941,7 +14941,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 170, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" } ], "type": { @@ -14960,7 +14960,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 171, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L171" } ], "type": { @@ -14982,7 +14982,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 169, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" } ] } @@ -15010,7 +15010,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -15046,7 +15046,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -15120,7 +15120,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -15156,7 +15156,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -15202,7 +15202,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 21, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" } ], "extendedTypes": [ @@ -15236,7 +15236,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" } ], "type": { @@ -15306,7 +15306,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" } ] }, @@ -15335,7 +15335,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "signatures": [ @@ -15350,7 +15350,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "parameters": [ @@ -15384,7 +15384,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "indexSignatures": [ @@ -15399,7 +15399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "parameters": [ @@ -15693,7 +15693,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "signatures": [ @@ -15787,7 +15787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185" } ], "parameters": [ @@ -15846,7 +15846,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ], "type": { @@ -15887,7 +15887,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189" } ], "type": { @@ -15927,7 +15927,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "type": { @@ -15968,7 +15968,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -15990,7 +15990,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 187, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187" } ] } @@ -16028,7 +16028,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 197, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L197" } ], "type": { @@ -16064,7 +16064,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 198, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L198" } ], "type": { @@ -16084,7 +16084,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 196, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L196" } ] } @@ -16109,7 +16109,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -16128,7 +16128,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L202" } ], "type": { @@ -16150,7 +16150,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ] } @@ -16175,7 +16175,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "signatures": [ @@ -16285,7 +16285,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L372" } ], "parameters": [ @@ -16339,7 +16339,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -16362,7 +16362,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ], "type": { @@ -16382,7 +16382,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 374, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L374" } ] } @@ -16399,7 +16399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L375" } ], "type": { @@ -16419,7 +16419,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 373, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L373" } ] } @@ -16444,7 +16444,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "type": { @@ -16463,7 +16463,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ], "type": { @@ -16485,7 +16485,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 377, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L377" } ] } @@ -16510,7 +16510,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "signatures": [ @@ -16620,7 +16620,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L326" } ], "parameters": [ @@ -16674,7 +16674,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -16697,7 +16697,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ], "type": { @@ -16717,7 +16717,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 328, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L328" } ] } @@ -16734,7 +16734,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 329, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L329" } ], "type": { @@ -16754,7 +16754,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 327, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L327" } ] } @@ -16779,7 +16779,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ], "type": { @@ -16798,7 +16798,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -16820,7 +16820,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ] } @@ -16845,7 +16845,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "signatures": [ @@ -16939,7 +16939,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L127" } ], "parameters": [ @@ -16993,7 +16993,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "type": { @@ -17014,7 +17014,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ], "type": { @@ -17034,7 +17034,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 128, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128" } ] } @@ -17059,7 +17059,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 133, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133" } ], "type": { @@ -17078,7 +17078,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ], "type": { @@ -17100,7 +17100,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ] } @@ -17125,7 +17125,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "signatures": [ @@ -17221,7 +17221,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70" } ], "parameters": [ @@ -17311,7 +17311,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ], "type": { @@ -17335,7 +17335,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -17355,7 +17355,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ] } @@ -17380,7 +17380,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ], "type": { @@ -17399,7 +17399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -17421,7 +17421,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L75" } ] } @@ -17449,7 +17449,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -17485,7 +17485,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -17559,7 +17559,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -17595,7 +17595,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -17626,7 +17626,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "signatures": [ @@ -17728,7 +17728,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 263, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263" } ], "parameters": [ @@ -17787,7 +17787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 268, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268" } ], "type": { @@ -17828,7 +17828,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "type": { @@ -17868,7 +17868,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 266, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266" } ], "type": { @@ -17888,7 +17888,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 265, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265" } ] } @@ -17925,7 +17925,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -17948,7 +17948,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -17968,7 +17968,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ] } @@ -17985,7 +17985,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 273, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L273" } ], "type": { @@ -18005,7 +18005,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ] } @@ -18030,7 +18030,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -18049,7 +18049,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -18071,7 +18071,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -18111,7 +18111,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" } ], "extendedTypes": [ @@ -18153,7 +18153,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" } ] }, @@ -18182,7 +18182,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "signatures": [ @@ -18197,7 +18197,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "parameters": [ @@ -18231,7 +18231,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "indexSignatures": [ @@ -18246,7 +18246,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "parameters": [ @@ -18536,9 +18536,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 576, + "line": 579, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L579" } ], "signatures": [ @@ -18638,9 +18638,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 576, + "line": 579, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L579" } ], "parameters": [ @@ -18750,9 +18750,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 582, + "line": 585, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" } ], "type": { @@ -18773,9 +18773,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 582, + "line": 585, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" } ], "type": { @@ -18793,9 +18793,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 582, + "line": 585, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" } ] } @@ -18810,9 +18810,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 583, + "line": 586, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L586" } ], "type": { @@ -18830,9 +18830,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 581, + "line": 584, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L584" } ] } @@ -18855,9 +18855,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 586, + "line": 589, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L586" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L589" } ], "type": { @@ -18874,9 +18874,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 587, + "line": 590, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L587" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L590" } ], "type": { @@ -18896,9 +18896,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 585, + "line": 588, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L588" } ] } @@ -18923,7 +18923,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" } ], "signatures": [ @@ -19017,7 +19017,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L362" } ], "parameters": [ @@ -19084,7 +19084,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 364, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" } ], "type": { @@ -19104,7 +19104,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 364, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L364" } ] } @@ -19141,7 +19141,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -19164,7 +19164,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -19183,7 +19183,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -19202,7 +19202,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ], "type": { @@ -19222,7 +19222,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 367, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" } ] } @@ -19239,7 +19239,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 368, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L368" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L368" } ], "type": { @@ -19259,7 +19259,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 366, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L366" } ] } @@ -19284,7 +19284,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 371, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L371" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L371" } ], "type": { @@ -19303,7 +19303,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 372, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L372" } ], "type": { @@ -19325,7 +19325,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 370, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" } ] } @@ -19348,9 +19348,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 664, + "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L667" } ], "signatures": [ @@ -19462,9 +19462,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 664, + "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L667" } ], "parameters": [ @@ -19558,9 +19558,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 670, + "line": 673, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L670" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L673" } ], "type": { @@ -19587,9 +19587,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 668, + "line": 671, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L668" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L671" } ], "type": { @@ -19625,9 +19625,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 669, + "line": 672, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L669" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L672" } ], "type": { @@ -19647,9 +19647,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 667, + "line": 670, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L670" } ] } @@ -19684,9 +19684,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 677, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" } ], "type": { @@ -19707,9 +19707,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 677, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" } ], "type": { @@ -19727,9 +19727,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 677, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" } ] } @@ -19744,9 +19744,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 675, + "line": 678, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L675" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L678" } ], "type": { @@ -19764,9 +19764,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 673, + "line": 676, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L673" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L676" } ] } @@ -19789,9 +19789,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 678, + "line": 681, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L678" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L681" } ], "type": { @@ -19808,9 +19808,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 679, + "line": 682, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L682" } ], "type": { @@ -19830,9 +19830,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 677, + "line": 680, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L680" } ] } @@ -19855,9 +19855,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 758, + "line": 761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" } ], "signatures": [ @@ -19949,9 +19949,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 758, + "line": 761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" } ], "parameters": [ @@ -20048,9 +20048,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 761, + "line": 764, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" } ], "type": { @@ -20077,9 +20077,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 761, + "line": 764, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" } ], "type": { @@ -20106,9 +20106,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 761, + "line": 764, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" } ] } @@ -20143,9 +20143,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -20168,9 +20168,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -20196,9 +20196,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -20224,9 +20224,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ], "type": { @@ -20253,9 +20253,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 764, + "line": 767, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" } ] } @@ -20271,9 +20271,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 765, + "line": 768, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L768" } ], "type": { @@ -20291,9 +20291,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 763, + "line": 766, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L766" } ] } @@ -20316,9 +20316,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 768, + "line": 771, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L768" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L771" } ], "type": { @@ -20335,9 +20335,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 769, + "line": 772, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" } ], "type": { @@ -20357,9 +20357,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 767, + "line": 770, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L770" } ] } @@ -20382,9 +20382,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "signatures": [ @@ -20514,9 +20514,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "typeParameters": [ @@ -20546,9 +20546,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "type": { @@ -20567,9 +20567,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ], "type": { @@ -20589,9 +20589,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 862, + "line": 865, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L865" } ] } @@ -20685,9 +20685,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 951, + "line": 954, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L951" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L954" } ], "signatures": [ @@ -20738,9 +20738,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 951, + "line": 954, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L951" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L954" } ], "parameters": [ @@ -20800,9 +20800,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 953, + "line": 956, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L953" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L956" } ], "type": { @@ -20819,9 +20819,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 954, + "line": 957, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L954" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L957" } ], "type": { @@ -20839,9 +20839,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 952, + "line": 955, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L952" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L955" } ] } @@ -20864,9 +20864,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 957, + "line": 960, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L957" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L960" } ], "type": { @@ -20883,9 +20883,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 958, + "line": 961, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L958" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L961" } ], "type": { @@ -20905,9 +20905,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 956, + "line": 959, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L956" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L959" } ] } @@ -20930,9 +20930,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1049, + "line": 1052, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1052" } ], "signatures": [ @@ -21036,9 +21036,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1049, + "line": 1052, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1049" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1052" } ], "parameters": [ @@ -21105,9 +21105,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1054, + "line": 1057, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1054" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1057" } ], "type": { @@ -21134,9 +21134,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1052, + "line": 1055, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1052" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1055" } ], "type": { @@ -21172,9 +21172,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1053, + "line": 1056, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" } ], "type": { @@ -21194,9 +21194,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1051, + "line": 1054, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1051" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1054" } ] } @@ -21221,9 +21221,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ], "type": { @@ -21244,9 +21244,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ], "type": { @@ -21264,9 +21264,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ] } @@ -21282,9 +21282,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1056, + "line": 1059, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1059" } ] } @@ -21301,9 +21301,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 915, + "line": 918, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L915" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L918" } ], "signatures": [ @@ -21370,9 +21370,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 915, + "line": 918, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L915" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L918" } ], "parameters": [ @@ -21432,9 +21432,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 917, + "line": 920, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L920" } ], "type": { @@ -21461,9 +21461,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 918, + "line": 921, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L918" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L921" } ], "type": { @@ -21481,9 +21481,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 916, + "line": 919, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L916" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L919" } ] } @@ -21506,9 +21506,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 921, + "line": 924, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L921" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L924" } ], "type": { @@ -21525,9 +21525,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 922, + "line": 925, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L922" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L925" } ], "type": { @@ -21547,9 +21547,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 920, + "line": 923, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L923" } ] } @@ -21572,9 +21572,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1276, + "line": 1279, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1279" } ], "signatures": [ @@ -21748,9 +21748,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1276, + "line": 1279, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1276" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1279" } ], "parameters": [ @@ -21850,9 +21850,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1282, + "line": 1285, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1282" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1285" } ], "type": { @@ -21874,9 +21874,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1283, + "line": 1286, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1283" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1286" } ], "type": { @@ -21894,9 +21894,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1281, + "line": 1284, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1284" } ] } @@ -21919,9 +21919,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1286, + "line": 1289, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1286" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1289" } ], "type": { @@ -21938,9 +21938,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1287, + "line": 1290, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1287" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1290" } ], "type": { @@ -21960,9 +21960,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1285, + "line": 1288, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1285" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1288" } ] } @@ -21985,9 +21985,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1348, + "line": 1351, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1351" } ], "signatures": [ @@ -22087,9 +22087,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1348, + "line": 1351, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1348" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1351" } ], "parameters": [ @@ -22168,9 +22168,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1353, + "line": 1356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1353" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1356" } ], "type": { @@ -22189,9 +22189,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1354, + "line": 1357, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1354" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1357" } ], "type": { @@ -22209,9 +22209,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1352, + "line": 1355, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1355" } ] } @@ -22234,9 +22234,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1357, + "line": 1360, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1360" } ], "type": { @@ -22253,9 +22253,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1358, + "line": 1361, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1358" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1361" } ], "type": { @@ -22275,9 +22275,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1356, + "line": 1359, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1359" } ] } @@ -22300,9 +22300,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 514, + "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L517" } ], "signatures": [ @@ -22402,9 +22402,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 514, + "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L517" } ], "parameters": [ @@ -22514,9 +22514,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 520, + "line": 523, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" } ], "type": { @@ -22537,9 +22537,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 520, + "line": 523, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" } ], "type": { @@ -22557,9 +22557,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 520, + "line": 523, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" } ] } @@ -22574,9 +22574,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 521, + "line": 524, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L524" } ], "type": { @@ -22594,9 +22594,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 519, + "line": 522, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L522" } ] } @@ -22619,9 +22619,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 524, + "line": 527, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L527" } ], "type": { @@ -22638,9 +22638,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 525, + "line": 528, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" } ], "type": { @@ -22660,9 +22660,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 523, + "line": 526, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L526" } ] } @@ -22685,9 +22685,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1112, + "line": 1115, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1115" } ], "signatures": [ @@ -22795,9 +22795,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1112, + "line": 1115, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1112" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1115" } ], "parameters": [ @@ -22860,9 +22860,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1114, + "line": 1117, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1114" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1117" } ], "type": { @@ -22884,9 +22884,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1115, + "line": 1118, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1118" } ], "type": { @@ -22904,9 +22904,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1113, + "line": 1116, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1113" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1116" } ] } @@ -22929,9 +22929,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1118, + "line": 1121, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1118" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1121" } ], "type": { @@ -22948,9 +22948,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1119, + "line": 1122, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1119" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1122" } ], "type": { @@ -22970,9 +22970,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1117, + "line": 1120, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1117" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1120" } ] } @@ -23000,7 +23000,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -23036,7 +23036,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -23110,7 +23110,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -23146,7 +23146,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -23175,9 +23175,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1377, + "line": 1380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1380" } ], "signatures": [ @@ -23190,9 +23190,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1377, + "line": 1380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1380" } ], "parameters": [ @@ -23224,9 +23224,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 454, + "line": 457, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" } ], "signatures": [ @@ -23268,7 +23268,7 @@ "content": [ { "kind": "code", - "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', avatarFile, {\n cacheControl: '3600',\n upsert: true\n })\n```" + "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', avatarFile, {\n cacheControl: '3600'\n })\n```" }, { "kind": "text", @@ -23327,7 +23327,23 @@ }, { "kind": "text", - "text": "\n- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works\n- For React Native, using either " + "text": "\n- " + }, + { + "kind": "code", + "text": "`update()`" + }, + { + "kind": "text", + "text": " always replaces the file at the given path regardless of the " + }, + { + "kind": "code", + "text": "`upsert`" + }, + { + "kind": "text", + "text": " option.\n- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works\n- For React Native, using either " }, { "kind": "code", @@ -23368,9 +23384,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 454, + "line": 457, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" } ], "parameters": [ @@ -23564,7 +23580,39 @@ "summary": [ { "kind": "text", - "text": "Optional file upload options including cacheControl, contentType, upsert, and metadata." + "text": "Optional file upload options including cacheControl, contentType, and metadata.\n**Note:** The " + }, + { + "kind": "code", + "text": "`upsert`" + }, + { + "kind": "text", + "text": " option has no effect here. " + }, + { + "kind": "code", + "text": "`update()`" + }, + { + "kind": "text", + "text": " always replaces the\nfile at the given path, so the " + }, + { + "kind": "code", + "text": "`x-upsert`" + }, + { + "kind": "text", + "text": " header is not sent. To control upsert\nbehavior, use " + }, + { + "kind": "code", + "text": "`upload()`" + }, + { + "kind": "text", + "text": " instead." } ] }, @@ -23604,9 +23652,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -23627,9 +23675,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -23646,9 +23694,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -23665,9 +23713,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ], "type": { @@ -23685,9 +23733,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 470, + "line": 473, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" } ] } @@ -23702,9 +23750,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 471, + "line": 474, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L474" } ], "type": { @@ -23722,9 +23770,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 469, + "line": 472, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L472" } ] } @@ -23747,9 +23795,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 474, + "line": 477, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" } ], "type": { @@ -23766,9 +23814,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 475, + "line": 478, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L478" } ], "type": { @@ -23788,9 +23836,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 473, + "line": 476, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" } ] } @@ -23815,7 +23863,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 203, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" } ], "signatures": [ @@ -23975,7 +24023,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 203, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L203" } ], "parameters": [ @@ -24084,7 +24132,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -24107,7 +24155,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -24126,7 +24174,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -24145,7 +24193,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ], "type": { @@ -24165,7 +24213,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 209, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" } ] } @@ -24182,7 +24230,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 210, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" } ], "type": { @@ -24202,7 +24250,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 208, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L208" } ] } @@ -24227,7 +24275,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 213, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L213" } ], "type": { @@ -24246,7 +24294,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L214" } ], "type": { @@ -24268,7 +24316,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 212, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L212" } ] } @@ -24293,7 +24341,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 257, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" } ], "signatures": [ @@ -24387,7 +24435,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 257, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L257" } ], "parameters": [ @@ -24543,7 +24591,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -24562,7 +24610,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -24584,7 +24632,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -24609,7 +24657,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -24632,7 +24680,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 322, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" } ], "type": { @@ -24652,7 +24700,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 322, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" } ], "type": { @@ -24673,7 +24721,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 322, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L322" } ] } @@ -24690,7 +24738,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -24710,7 +24758,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -24755,7 +24803,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "extendedTypes": [ @@ -24790,7 +24838,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" } ] }, @@ -24832,7 +24880,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" } ], "signatures": [ @@ -24887,7 +24935,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L108" } ], "parameters": [ @@ -24985,7 +25033,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 155, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" } ], "signatures": [ @@ -25039,7 +25087,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 155, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L155" } ], "parameters": [ @@ -25110,7 +25158,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" } ], "signatures": [ @@ -25164,7 +25212,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L236" } ], "parameters": [ @@ -25235,7 +25283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" } ], "signatures": [ @@ -25289,7 +25337,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L130" } ], "parameters": [ @@ -25333,7 +25381,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ], "signatures": [ @@ -25387,7 +25435,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ], "parameters": [ @@ -25442,7 +25490,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ], "type": { @@ -25464,7 +25512,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 181, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L181" } ] } @@ -25501,7 +25549,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" } ], "signatures": [ @@ -25555,7 +25603,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L209" } ], "parameters": [ @@ -25634,7 +25682,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -25671,7 +25719,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -25745,7 +25793,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -25782,7 +25830,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -25828,7 +25876,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" } ], "extendedTypes": [ @@ -25867,7 +25915,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 266, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" } ], "signatures": [ @@ -25912,7 +25960,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 266, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L266" } ], "parameters": [ @@ -25946,7 +25994,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 268, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" } ], "indexSignatures": [ @@ -25961,7 +26009,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 268, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L268" } ], "parameters": [ @@ -26249,7 +26297,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 303, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" } ], "signatures": [ @@ -26303,7 +26351,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 303, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L303" } ], "parameters": [ @@ -26391,7 +26439,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 379, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" } ], "signatures": [ @@ -26445,7 +26493,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 379, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L379" } ], "parameters": [ @@ -26516,7 +26564,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 356, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" } ], "signatures": [ @@ -26570,7 +26618,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 356, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L356" } ], "parameters": [ @@ -26625,7 +26673,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ], "type": { @@ -26647,7 +26695,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ] } @@ -26684,7 +26732,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" } ], "signatures": [ @@ -26738,7 +26786,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L414" } ], "parameters": [ @@ -26782,7 +26830,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 329, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" } ], "signatures": [ @@ -26836,7 +26884,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 329, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L329" } ], "parameters": [ @@ -26930,7 +26978,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -26967,7 +27015,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -27041,7 +27089,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -27078,7 +27126,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -27124,7 +27172,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 250, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L250" } ], "extendedTypes": [ @@ -27163,7 +27211,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" } ], "signatures": [ @@ -27208,7 +27256,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 452, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L452" } ], "parameters": [ @@ -27242,7 +27290,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 454, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" } ], "indexSignatures": [ @@ -27257,7 +27305,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 454, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L454" } ], "parameters": [ @@ -27556,7 +27604,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" } ], "signatures": [ @@ -27610,7 +27658,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L617" } ], "parameters": [ @@ -27707,7 +27755,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 521, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" } ], "signatures": [ @@ -27761,7 +27809,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 521, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L521" } ], "parameters": [ @@ -27860,7 +27908,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 551, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" } ], "signatures": [ @@ -27914,7 +27962,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 551, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L551" } ], "parameters": [ @@ -28014,7 +28062,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 491, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" } ], "signatures": [ @@ -28068,7 +28116,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 491, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L491" } ], "parameters": [ @@ -28165,7 +28213,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 586, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" } ], "signatures": [ @@ -28219,7 +28267,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 586, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L586" } ], "parameters": [ @@ -28321,7 +28369,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -28358,7 +28406,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -28432,7 +28480,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -28469,7 +28517,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -28515,7 +28563,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 434, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L434" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L434" } ], "extendedTypes": [ @@ -28565,7 +28613,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" } ], "type": { @@ -28803,7 +28851,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "type": { @@ -28819,7 +28867,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "indexSignatures": [ @@ -28834,7 +28882,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "parameters": [ @@ -28871,7 +28919,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 26, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" } ] } @@ -28891,7 +28939,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" } ] }, @@ -28920,7 +28968,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "signatures": [ @@ -28935,7 +28983,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "parameters": [ @@ -28958,7 +29006,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "signatures": [ @@ -28973,7 +29021,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "type": { @@ -29034,7 +29082,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "signatures": [ @@ -29068,7 +29116,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "typeParameters": [ @@ -29151,7 +29199,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "signatures": [ @@ -29166,7 +29214,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "parameters": [ @@ -29274,7 +29322,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "signatures": [ @@ -29289,7 +29337,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "parameters": [ @@ -29402,7 +29450,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 4, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" } ], "implementedTypes": [ @@ -29448,7 +29496,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" } ] }, @@ -29463,7 +29511,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" } ] }, @@ -29478,7 +29526,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorDataApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" } ] }, @@ -29520,7 +29568,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" } ], "type": { @@ -29543,7 +29591,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" } ], "type": { @@ -29566,7 +29614,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" } ], "type": { @@ -29591,7 +29639,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" } ], "type": { @@ -29616,7 +29664,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" } ], "type": { @@ -29641,7 +29689,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" } ], "type": { @@ -29661,7 +29709,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" } ] } @@ -29677,7 +29725,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/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 a32f1470c0fc1..2f80cd68b2e52 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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/cors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/cors.ts#L54" } ], "type": { @@ -107,7 +107,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 78, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/cors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/cors.ts#L78" } ], "type": { @@ -134,7 +134,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/cors.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/cors.ts#L1" } ] }, @@ -13273,7 +13273,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1927, + "line": 1938, "character": 14 } ], @@ -13287,7 +13287,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1927, + "line": 1938, "character": 14 } ], @@ -13333,7 +13333,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1928, + "line": 1939, "character": 8 } ], @@ -13363,7 +13363,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1927, + "line": 1938, "character": 53 } ] @@ -13630,7 +13630,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2382, + "line": 2393, "character": 4 } ], @@ -13737,7 +13737,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2382, + "line": 2393, "character": 4 } ], @@ -13832,7 +13832,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2388, + "line": 2399, "character": 8 } ], @@ -13860,7 +13860,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2390, + "line": 2401, "character": 8 } ], @@ -13882,7 +13882,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2391, + "line": 2402, "character": 12 } ], @@ -13906,7 +13906,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2390, + "line": 2401, "character": 15 } ] @@ -13938,7 +13938,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2386, + "line": 2397, "character": 8 } ], @@ -13962,7 +13962,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2382, + "line": 2393, "character": 38 } ] @@ -13998,7 +13998,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2394, + "line": 2405, "character": 8 } ], @@ -14020,7 +14020,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2395, + "line": 2406, "character": 12 } ], @@ -14040,7 +14040,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2396, + "line": 2407, "character": 12 } ], @@ -14060,7 +14060,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2397, + "line": 2408, "character": 12 } ], @@ -14084,7 +14084,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2394, + "line": 2405, "character": 14 } ] @@ -14100,7 +14100,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2399, + "line": 2410, "character": 8 } ], @@ -14119,7 +14119,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2404, "character": 16 } ] @@ -14143,7 +14143,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2401, + "line": 2412, "character": 8 } ], @@ -14161,7 +14161,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2402, + "line": 2413, "character": 8 } ], @@ -14182,7 +14182,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2400, + "line": 2411, "character": 8 } ] @@ -14206,7 +14206,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2404, + "line": 2415, "character": 8 } ], @@ -14224,7 +14224,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2405, + "line": 2416, "character": 8 } ], @@ -14243,7 +14243,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2403, + "line": 2414, "character": 8 } ] @@ -14872,7 +14872,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2076, + "line": 2087, "character": 4 } ], @@ -14945,7 +14945,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2076, + "line": 2087, "character": 4 } ], @@ -14977,7 +14977,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2077, + "line": 2088, "character": 8 } ], @@ -14999,7 +14999,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2078, + "line": 2089, "character": 12 } ], @@ -15023,7 +15023,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2077, + "line": 2088, "character": 14 } ] @@ -15039,7 +15039,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2080, + "line": 2091, "character": 8 } ], @@ -15058,7 +15058,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2076, + "line": 2087, "character": 33 } ] @@ -15082,7 +15082,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2082, + "line": 2093, "character": 8 } ], @@ -15100,7 +15100,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2083, + "line": 2094, "character": 8 } ], @@ -15121,7 +15121,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2081, + "line": 2092, "character": 8 } ] @@ -15253,12 +15253,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2089, + "line": 2100, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2093, + "line": 2104, "character": 4 } ], @@ -15280,7 +15280,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2089, + "line": 2100, "character": 4 } ], @@ -15334,7 +15334,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2093, + "line": 2104, "character": 4 } ], @@ -15382,12 +15382,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 4 } ], @@ -15409,7 +15409,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 4 } ], @@ -15439,7 +15439,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 32 } ], @@ -15453,7 +15453,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 32 } ], @@ -15522,7 +15522,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1937, + "line": 1948, "character": 8 } ], @@ -15544,7 +15544,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1949, "character": 12 } ], @@ -15565,7 +15565,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1937, + "line": 1948, "character": 14 } ] @@ -15582,7 +15582,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 92 } ] @@ -15625,7 +15625,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 4 } ], @@ -15655,7 +15655,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 32 } ], @@ -15669,7 +15669,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 32 } ], @@ -15749,7 +15749,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1954, + "line": 1965, "character": 8 } ], @@ -15771,7 +15771,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1955, + "line": 1966, "character": 12 } ], @@ -15792,7 +15792,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1954, + "line": 1965, "character": 14 } ] @@ -15809,7 +15809,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 101 } ] @@ -16115,7 +16115,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2424, + "line": 2435, "character": 4 } ], @@ -16145,7 +16145,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2424, + "line": 2435, "character": 4 } ], @@ -16393,7 +16393,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2026, + "line": 2037, "character": 4 } ], @@ -16520,7 +16520,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2026, + "line": 2037, "character": 4 } ], @@ -16580,7 +16580,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2028, + "line": 2039, "character": 8 } ], @@ -16608,7 +16608,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2027, + "line": 2038, "character": 8 } ], @@ -16627,7 +16627,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2026, + "line": 2037, "character": 51 } ] @@ -16663,7 +16663,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2030, + "line": 2041, "character": 8 } ], @@ -16687,7 +16687,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2031, + "line": 2042, "character": 8 } ], @@ -16706,7 +16706,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2029, + "line": 2040, "character": 16 } ] @@ -16730,7 +16730,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2033, + "line": 2044, "character": 8 } ], @@ -16748,7 +16748,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2034, + "line": 2045, "character": 8 } ], @@ -16769,7 +16769,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2032, + "line": 2043, "character": 8 } ] @@ -17704,7 +17704,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2415, + "line": 2426, "character": 4 } ], @@ -17734,7 +17734,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2415, + "line": 2426, "character": 4 } ], @@ -18413,7 +18413,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1924, + "line": 1935, "character": 4 } ], @@ -18468,7 +18468,31 @@ }, { "kind": "text", - "text": " event is fired!" + "text": " event is fired!\n\n**Warning:** the default " + }, + { + "kind": "code", + "text": "`scope`" + }, + { + "kind": "text", + "text": " is " + }, + { + "kind": "code", + "text": "`'global'`" + }, + { + "kind": "text", + "text": ". This signs the user out of\n**every device they are currently signed in on**, not just the current\ntab/session. If you only want to sign the user out of the current session\n(the behavior most other auth libraries default to), pass\n" + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " explicitly." } ], "blockTags": [ @@ -18502,13 +18526,21 @@ }, { "kind": "text", - "text": " uses the global scope, which signs out all other sessions that the user is logged into as well. Customize this behavior by passing a scope parameter.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." + "text": " uses the **global** scope, which signs out the user\n on every device they are signed in on (not just the current one). Pass\n " + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " to only sign out the current session. This is\n usually what apps want on a \"Sign out\" button, especially when users\n sign in from multiple devices and do not expect signing out of one to\n terminate the others.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." } ] }, { "tag": "@example", - "name": "Sign out (all sessions)", + "name": "Sign out of every device (global – default)", "content": [ { "kind": "code", @@ -18518,7 +18550,7 @@ }, { "tag": "@example", - "name": "Sign out (current session)", + "name": "Sign out only the current session (recommended for most apps)", "content": [ { "kind": "code", @@ -18528,7 +18560,7 @@ }, { "tag": "@example", - "name": "Sign out (other sessions)", + "name": "Sign out of all other sessions, keep the current one", "content": [ { "kind": "code", @@ -18541,7 +18573,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1924, + "line": 1935, "character": 4 } ], @@ -18587,7 +18619,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1925, + "line": 1936, "character": 8 } ], @@ -18617,7 +18649,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1924, + "line": 1935, "character": 40 } ] @@ -18892,7 +18924,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2209, + "line": 2220, "character": 4 } ], @@ -18967,7 +18999,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2209, + "line": 2220, "character": 4 } ], @@ -18998,7 +19030,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2240, + "line": 2251, "character": 4 } ], @@ -19059,7 +19091,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2240, + "line": 2251, "character": 4 } ], @@ -19090,7 +19122,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2121, + "line": 2132, "character": 4 } ], @@ -19150,7 +19182,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2121, + "line": 2132, "character": 4 } ], @@ -19197,7 +19229,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2122, + "line": 2133, "character": 8 } ], @@ -19221,7 +19253,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2123, + "line": 2134, "character": 8 } ], @@ -19240,7 +19272,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2121, + "line": 2132, "character": 52 } ] @@ -19264,7 +19296,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2125, + "line": 2136, "character": 8 } ], @@ -19282,7 +19314,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2126, + "line": 2137, "character": 8 } ], @@ -19303,7 +19335,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2124, + "line": 2135, "character": 8 } ] @@ -29959,58 +29991,136 @@ } ], "type": { - "type": "reference", - "target": 141, - "typeArguments": [ - { - "type": "reference", - "target": 144, - "name": "ClientOptions", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.ClientOptions", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 145, - "name": "Schema", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Schema", - "refersToTypeParameter": true - }, + "type": "intersection", + "types": [ { "type": "reference", - "target": { - "sourceFileName": "../postgrest-js/src/PostgrestError.ts", - "qualifiedName": "NonNullableColumn" - }, + "target": 141, "typeArguments": [ { "type": "reference", - "target": 146, - "name": "Row", + "target": 144, + "name": "ClientOptions", "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Row", + "qualifiedName": "PostgrestFilterBuilder.ClientOptions", "refersToTypeParameter": true }, { "type": "reference", - "target": 390, - "name": "ColumnName", + "target": 145, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": { + "sourceFileName": "../postgrest-js/src/PostgrestError.ts", + "qualifiedName": "NonNullableColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 146, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 390, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NonNullableColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../postgrest-js/src/PostgrestError.ts", + "qualifiedName": "NarrowResultColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 147, + "name": "Result$1", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Result$1", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 390, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NarrowResultColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": 148, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 149, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 150, + "name": "Method", "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Method", "refersToTypeParameter": true } ], - "name": "NonNullableColumn", + "name": "PostgrestFilterBuilder", "package": "@supabase/postgrest-js" }, { "type": "reference", - "target": { - "sourceFileName": "../postgrest-js/src/PostgrestError.ts", - "qualifiedName": "NarrowResultColumn" - }, + "target": 141, "typeArguments": [ + { + "type": "reference", + "target": 144, + "name": "ClientOptions", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.ClientOptions", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 145, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 146, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Row", + "refersToTypeParameter": true + }, { "type": "reference", "target": 147, @@ -30021,42 +30131,33 @@ }, { "type": "reference", - "target": 390, - "name": "ColumnName", + "target": 148, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 149, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 150, + "name": "Method", "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Method", "refersToTypeParameter": true } ], - "name": "NarrowResultColumn", + "name": "PostgrestFilterBuilder", "package": "@supabase/postgrest-js" - }, - { - "type": "reference", - "target": 148, - "name": "RelationName", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.RelationName", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 149, - "name": "Relationships", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Relationships", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 150, - "name": "Method", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Method", - "refersToTypeParameter": true } - ], - "name": "PostgrestFilterBuilder", - "package": "@supabase/postgrest-js" + ] } }, { @@ -55831,7 +55932,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L279" } ], "signatures": [ @@ -56109,7 +56210,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L279" } ], "typeParameters": [ @@ -56157,7 +56258,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ], "type": { @@ -56177,7 +56278,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ] } @@ -56527,7 +56628,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ], "type": { @@ -56547,7 +56648,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ] } @@ -56628,7 +56729,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -56651,7 +56752,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -56671,7 +56772,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -56689,7 +56790,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -56739,7 +56840,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ], "type": { @@ -56759,7 +56860,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ] } @@ -56795,7 +56896,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ], "type": { @@ -56815,7 +56916,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ] } @@ -56991,7 +57092,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "type": { @@ -57007,7 +57108,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "signatures": [ @@ -57022,7 +57123,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "type": { @@ -57073,7 +57174,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L73" } ], "type": { @@ -57099,7 +57200,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L81" } ], "type": { @@ -57126,7 +57227,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L87" } ], "type": { @@ -57148,7 +57249,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L86" } ], "type": { @@ -57377,7 +57478,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L83" } ], "type": { @@ -57403,7 +57504,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L90" } ], "type": { @@ -57437,7 +57538,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L74" } ], "type": { @@ -57461,7 +57562,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L80" } ], "type": { @@ -57487,7 +57588,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L84" } ], "type": { @@ -57545,7 +57646,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L78" } ], "type": { @@ -57571,7 +57672,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L85" } ], "type": { @@ -57592,7 +57693,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L82" } ], "type": { @@ -57626,7 +57727,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 281, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L281" } ], "type": { @@ -57655,7 +57756,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 280, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L280" } ], "type": { @@ -57674,7 +57775,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 365, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L365" } ], "getSignature": { @@ -57696,7 +57797,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 365, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L365" } ], "type": { @@ -57721,7 +57822,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L479" } ], "signatures": [ @@ -57744,7 +57845,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L479" } ], "parameters": [ @@ -57831,19 +57932,19 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L373" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L377" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 385, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L385" } ], "signatures": [ @@ -57858,7 +57959,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L373" } ], "typeParameters": [ @@ -57956,7 +58057,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L377" } ], "typeParameters": [ @@ -58056,7 +58157,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L493" } ], "signatures": [ @@ -58100,7 +58201,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L493" } ], "type": { @@ -58127,7 +58228,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L530" } ], "signatures": [ @@ -58180,7 +58281,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L530" } ], "type": { @@ -58228,7 +58329,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 513, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L513" } ], "signatures": [ @@ -58281,7 +58382,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 513, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L513" } ], "parameters": [ @@ -58350,7 +58451,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 432, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L432" } ], "signatures": [ @@ -58373,7 +58474,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 432, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L432" } ], "typeParameters": [ @@ -58599,7 +58700,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 446, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L446" } ], "type": { @@ -58649,7 +58750,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 445, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L445" } ], "type": { @@ -58694,7 +58795,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 444, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L444" } ], "type": { @@ -58714,7 +58815,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 443, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L443" } ] } @@ -58820,7 +58921,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L397" } ], "signatures": [ @@ -58843,7 +58944,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L397" } ], "typeParameters": [ @@ -59004,7 +59105,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 37, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L37" } ], "typeParameters": [ @@ -59084,7 +59185,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ], "type": { @@ -59104,7 +59205,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ] } @@ -59574,7 +59675,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ], "type": { @@ -59594,7 +59695,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ] } @@ -59675,7 +59776,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -59698,7 +59799,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -59718,7 +59819,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -59736,7 +59837,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -59776,7 +59877,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ], "type": { @@ -59796,7 +59897,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ] } @@ -59832,7 +59933,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ], "type": { @@ -59852,7 +59953,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ] } @@ -74383,7 +74484,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 180, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L180" } ], "typeParameters": [ @@ -82411,7 +82512,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 168, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L168" } ], "typeParameters": [ @@ -82459,7 +82560,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 168, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L168" } ], "type": { @@ -82479,7 +82580,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 168, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L168" } ] } @@ -82530,7 +82631,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 169, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L169" } ], "type": { @@ -82559,7 +82660,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 167, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L167" } ], "typeParameters": [ @@ -89684,7 +89785,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L28" } ], "typeParameters": [ @@ -89734,7 +89835,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 161, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L161" } ], "type": { @@ -89750,7 +89851,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 161, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L161" } ], "signatures": [ @@ -89802,7 +89903,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L61" } ], "type": { @@ -89835,7 +89936,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 65, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L65" } ], "type": { @@ -89864,7 +89965,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L115" } ], "type": { @@ -89917,7 +90018,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "type": { @@ -89940,7 +90041,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "signatures": [ @@ -89986,7 +90087,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "indexSignatures": [ @@ -90001,7 +90102,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "parameters": [ @@ -90060,7 +90161,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 133, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L133" } ], "type": { @@ -90101,7 +90202,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 111, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L111" } ], "type": { @@ -90143,7 +90244,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L121" } ], "type": { @@ -90184,7 +90285,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 73, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L73" } ], "type": { @@ -90213,7 +90314,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L99" } ], "type": { @@ -90254,7 +90355,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 69, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L69" } ], "type": { @@ -90283,7 +90384,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L126" } ], "type": { @@ -90325,7 +90426,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 107, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L107" } ], "type": { @@ -90359,7 +90460,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 61, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L61" } ] } @@ -90394,7 +90495,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L32" } ], "type": { @@ -90419,7 +90520,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L33" } ], "type": { @@ -90463,7 +90564,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L45" } ], "type": { @@ -90504,7 +90605,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 58, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L58" } ], "type": { @@ -90524,7 +90625,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L32" } ] } @@ -90543,7 +90644,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L140" } ], "type": { @@ -90584,7 +90685,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 144, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L144" } ], "type": { @@ -90618,7 +90719,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 148, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L148" } ], "type": { @@ -90653,7 +90754,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 140, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L140" } ] } @@ -90680,7 +90781,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L138" } ], "type": { @@ -90703,7 +90804,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L139" } ], "type": { @@ -90728,7 +90829,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L28" } ] } @@ -92434,7 +92535,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 46, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L46" } ], "signatures": [ @@ -92449,7 +92550,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 46, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L46" } ], "typeParameters": [ @@ -92497,7 +92598,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 50, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L50" } ], "type": { @@ -92517,7 +92618,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 50, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L50" } ] } @@ -93732,7 +93833,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L1" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json index a32f1470c0fc1..2f80cd68b2e52 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/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/cors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/cors.ts#L54" } ], "type": { @@ -107,7 +107,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 78, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/cors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/cors.ts#L78" } ], "type": { @@ -134,7 +134,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/cors.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/cors.ts#L1" } ] }, @@ -13273,7 +13273,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1927, + "line": 1938, "character": 14 } ], @@ -13287,7 +13287,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1927, + "line": 1938, "character": 14 } ], @@ -13333,7 +13333,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1928, + "line": 1939, "character": 8 } ], @@ -13363,7 +13363,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1927, + "line": 1938, "character": 53 } ] @@ -13630,7 +13630,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2382, + "line": 2393, "character": 4 } ], @@ -13737,7 +13737,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2382, + "line": 2393, "character": 4 } ], @@ -13832,7 +13832,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2388, + "line": 2399, "character": 8 } ], @@ -13860,7 +13860,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2390, + "line": 2401, "character": 8 } ], @@ -13882,7 +13882,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2391, + "line": 2402, "character": 12 } ], @@ -13906,7 +13906,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2390, + "line": 2401, "character": 15 } ] @@ -13938,7 +13938,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2386, + "line": 2397, "character": 8 } ], @@ -13962,7 +13962,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2382, + "line": 2393, "character": 38 } ] @@ -13998,7 +13998,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2394, + "line": 2405, "character": 8 } ], @@ -14020,7 +14020,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2395, + "line": 2406, "character": 12 } ], @@ -14040,7 +14040,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2396, + "line": 2407, "character": 12 } ], @@ -14060,7 +14060,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2397, + "line": 2408, "character": 12 } ], @@ -14084,7 +14084,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2394, + "line": 2405, "character": 14 } ] @@ -14100,7 +14100,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2399, + "line": 2410, "character": 8 } ], @@ -14119,7 +14119,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2404, "character": 16 } ] @@ -14143,7 +14143,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2401, + "line": 2412, "character": 8 } ], @@ -14161,7 +14161,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2402, + "line": 2413, "character": 8 } ], @@ -14182,7 +14182,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2400, + "line": 2411, "character": 8 } ] @@ -14206,7 +14206,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2404, + "line": 2415, "character": 8 } ], @@ -14224,7 +14224,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2405, + "line": 2416, "character": 8 } ], @@ -14243,7 +14243,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2403, + "line": 2414, "character": 8 } ] @@ -14872,7 +14872,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2076, + "line": 2087, "character": 4 } ], @@ -14945,7 +14945,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2076, + "line": 2087, "character": 4 } ], @@ -14977,7 +14977,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2077, + "line": 2088, "character": 8 } ], @@ -14999,7 +14999,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2078, + "line": 2089, "character": 12 } ], @@ -15023,7 +15023,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2077, + "line": 2088, "character": 14 } ] @@ -15039,7 +15039,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2080, + "line": 2091, "character": 8 } ], @@ -15058,7 +15058,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2076, + "line": 2087, "character": 33 } ] @@ -15082,7 +15082,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2082, + "line": 2093, "character": 8 } ], @@ -15100,7 +15100,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2083, + "line": 2094, "character": 8 } ], @@ -15121,7 +15121,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2081, + "line": 2092, "character": 8 } ] @@ -15253,12 +15253,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2089, + "line": 2100, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2093, + "line": 2104, "character": 4 } ], @@ -15280,7 +15280,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2089, + "line": 2100, "character": 4 } ], @@ -15334,7 +15334,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2093, + "line": 2104, "character": 4 } ], @@ -15382,12 +15382,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 4 } ], @@ -15409,7 +15409,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 4 } ], @@ -15439,7 +15439,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 32 } ], @@ -15453,7 +15453,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 32 } ], @@ -15522,7 +15522,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1937, + "line": 1948, "character": 8 } ], @@ -15544,7 +15544,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1949, "character": 12 } ], @@ -15565,7 +15565,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1937, + "line": 1948, "character": 14 } ] @@ -15582,7 +15582,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1947, "character": 92 } ] @@ -15625,7 +15625,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 4 } ], @@ -15655,7 +15655,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 32 } ], @@ -15669,7 +15669,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 32 } ], @@ -15749,7 +15749,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1954, + "line": 1965, "character": 8 } ], @@ -15771,7 +15771,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1955, + "line": 1966, "character": 12 } ], @@ -15792,7 +15792,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1954, + "line": 1965, "character": 14 } ] @@ -15809,7 +15809,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1953, + "line": 1964, "character": 101 } ] @@ -16115,7 +16115,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2424, + "line": 2435, "character": 4 } ], @@ -16145,7 +16145,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2424, + "line": 2435, "character": 4 } ], @@ -16393,7 +16393,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2026, + "line": 2037, "character": 4 } ], @@ -16520,7 +16520,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2026, + "line": 2037, "character": 4 } ], @@ -16580,7 +16580,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2028, + "line": 2039, "character": 8 } ], @@ -16608,7 +16608,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2027, + "line": 2038, "character": 8 } ], @@ -16627,7 +16627,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2026, + "line": 2037, "character": 51 } ] @@ -16663,7 +16663,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2030, + "line": 2041, "character": 8 } ], @@ -16687,7 +16687,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2031, + "line": 2042, "character": 8 } ], @@ -16706,7 +16706,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2029, + "line": 2040, "character": 16 } ] @@ -16730,7 +16730,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2033, + "line": 2044, "character": 8 } ], @@ -16748,7 +16748,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2034, + "line": 2045, "character": 8 } ], @@ -16769,7 +16769,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2032, + "line": 2043, "character": 8 } ] @@ -17704,7 +17704,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2415, + "line": 2426, "character": 4 } ], @@ -17734,7 +17734,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2415, + "line": 2426, "character": 4 } ], @@ -18413,7 +18413,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1924, + "line": 1935, "character": 4 } ], @@ -18468,7 +18468,31 @@ }, { "kind": "text", - "text": " event is fired!" + "text": " event is fired!\n\n**Warning:** the default " + }, + { + "kind": "code", + "text": "`scope`" + }, + { + "kind": "text", + "text": " is " + }, + { + "kind": "code", + "text": "`'global'`" + }, + { + "kind": "text", + "text": ". This signs the user out of\n**every device they are currently signed in on**, not just the current\ntab/session. If you only want to sign the user out of the current session\n(the behavior most other auth libraries default to), pass\n" + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " explicitly." } ], "blockTags": [ @@ -18502,13 +18526,21 @@ }, { "kind": "text", - "text": " uses the global scope, which signs out all other sessions that the user is logged into as well. Customize this behavior by passing a scope parameter.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." + "text": " uses the **global** scope, which signs out the user\n on every device they are signed in on (not just the current one). Pass\n " + }, + { + "kind": "code", + "text": "`{ scope: 'local' }`" + }, + { + "kind": "text", + "text": " to only sign out the current session. This is\n usually what apps want on a \"Sign out\" button, especially when users\n sign in from multiple devices and do not expect signing out of one to\n terminate the others.\n- Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires." } ] }, { "tag": "@example", - "name": "Sign out (all sessions)", + "name": "Sign out of every device (global – default)", "content": [ { "kind": "code", @@ -18518,7 +18550,7 @@ }, { "tag": "@example", - "name": "Sign out (current session)", + "name": "Sign out only the current session (recommended for most apps)", "content": [ { "kind": "code", @@ -18528,7 +18560,7 @@ }, { "tag": "@example", - "name": "Sign out (other sessions)", + "name": "Sign out of all other sessions, keep the current one", "content": [ { "kind": "code", @@ -18541,7 +18573,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1924, + "line": 1935, "character": 4 } ], @@ -18587,7 +18619,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1925, + "line": 1936, "character": 8 } ], @@ -18617,7 +18649,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1924, + "line": 1935, "character": 40 } ] @@ -18892,7 +18924,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2209, + "line": 2220, "character": 4 } ], @@ -18967,7 +18999,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2209, + "line": 2220, "character": 4 } ], @@ -18998,7 +19030,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2240, + "line": 2251, "character": 4 } ], @@ -19059,7 +19091,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2240, + "line": 2251, "character": 4 } ], @@ -19090,7 +19122,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2121, + "line": 2132, "character": 4 } ], @@ -19150,7 +19182,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2121, + "line": 2132, "character": 4 } ], @@ -19197,7 +19229,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2122, + "line": 2133, "character": 8 } ], @@ -19221,7 +19253,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2123, + "line": 2134, "character": 8 } ], @@ -19240,7 +19272,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2121, + "line": 2132, "character": 52 } ] @@ -19264,7 +19296,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2125, + "line": 2136, "character": 8 } ], @@ -19282,7 +19314,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2126, + "line": 2137, "character": 8 } ], @@ -19303,7 +19335,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2124, + "line": 2135, "character": 8 } ] @@ -29959,58 +29991,136 @@ } ], "type": { - "type": "reference", - "target": 141, - "typeArguments": [ - { - "type": "reference", - "target": 144, - "name": "ClientOptions", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.ClientOptions", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 145, - "name": "Schema", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Schema", - "refersToTypeParameter": true - }, + "type": "intersection", + "types": [ { "type": "reference", - "target": { - "sourceFileName": "../postgrest-js/src/PostgrestError.ts", - "qualifiedName": "NonNullableColumn" - }, + "target": 141, "typeArguments": [ { "type": "reference", - "target": 146, - "name": "Row", + "target": 144, + "name": "ClientOptions", "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Row", + "qualifiedName": "PostgrestFilterBuilder.ClientOptions", "refersToTypeParameter": true }, { "type": "reference", - "target": 390, - "name": "ColumnName", + "target": 145, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": { + "sourceFileName": "../postgrest-js/src/PostgrestError.ts", + "qualifiedName": "NonNullableColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 146, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 390, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NonNullableColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../postgrest-js/src/PostgrestError.ts", + "qualifiedName": "NarrowResultColumn" + }, + "typeArguments": [ + { + "type": "reference", + "target": 147, + "name": "Result$1", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Result$1", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 390, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "NarrowResultColumn", + "package": "@supabase/postgrest-js" + }, + { + "type": "reference", + "target": 148, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 149, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 150, + "name": "Method", "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Method", "refersToTypeParameter": true } ], - "name": "NonNullableColumn", + "name": "PostgrestFilterBuilder", "package": "@supabase/postgrest-js" }, { "type": "reference", - "target": { - "sourceFileName": "../postgrest-js/src/PostgrestError.ts", - "qualifiedName": "NarrowResultColumn" - }, + "target": 141, "typeArguments": [ + { + "type": "reference", + "target": 144, + "name": "ClientOptions", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.ClientOptions", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 145, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 146, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Row", + "refersToTypeParameter": true + }, { "type": "reference", "target": 147, @@ -30021,42 +30131,33 @@ }, { "type": "reference", - "target": 390, - "name": "ColumnName", + "target": 148, + "name": "RelationName", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.RelationName", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 149, + "name": "Relationships", + "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Relationships", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 150, + "name": "Method", "package": "@supabase/postgrest-js", + "qualifiedName": "PostgrestFilterBuilder.Method", "refersToTypeParameter": true } ], - "name": "NarrowResultColumn", + "name": "PostgrestFilterBuilder", "package": "@supabase/postgrest-js" - }, - { - "type": "reference", - "target": 148, - "name": "RelationName", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.RelationName", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 149, - "name": "Relationships", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Relationships", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 150, - "name": "Method", - "package": "@supabase/postgrest-js", - "qualifiedName": "PostgrestFilterBuilder.Method", - "refersToTypeParameter": true } - ], - "name": "PostgrestFilterBuilder", - "package": "@supabase/postgrest-js" + ] } }, { @@ -55831,7 +55932,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L279" } ], "signatures": [ @@ -56109,7 +56210,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L279" } ], "typeParameters": [ @@ -56157,7 +56258,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ], "type": { @@ -56177,7 +56278,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ] } @@ -56527,7 +56628,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ], "type": { @@ -56547,7 +56648,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ] } @@ -56628,7 +56729,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -56651,7 +56752,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -56671,7 +56772,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -56689,7 +56790,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -56739,7 +56840,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ], "type": { @@ -56759,7 +56860,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ] } @@ -56795,7 +56896,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ], "type": { @@ -56815,7 +56916,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ] } @@ -56991,7 +57092,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "type": { @@ -57007,7 +57108,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "signatures": [ @@ -57022,7 +57123,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "type": { @@ -57073,7 +57174,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L73" } ], "type": { @@ -57099,7 +57200,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L81" } ], "type": { @@ -57126,7 +57227,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L87" } ], "type": { @@ -57148,7 +57249,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L86" } ], "type": { @@ -57377,7 +57478,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L83" } ], "type": { @@ -57403,7 +57504,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L90" } ], "type": { @@ -57437,7 +57538,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L74" } ], "type": { @@ -57461,7 +57562,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L80" } ], "type": { @@ -57487,7 +57588,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L84" } ], "type": { @@ -57545,7 +57646,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L78" } ], "type": { @@ -57571,7 +57672,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L85" } ], "type": { @@ -57592,7 +57693,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L82" } ], "type": { @@ -57626,7 +57727,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 281, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L281" } ], "type": { @@ -57655,7 +57756,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 280, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L280" } ], "type": { @@ -57674,7 +57775,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 365, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L365" } ], "getSignature": { @@ -57696,7 +57797,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 365, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L365" } ], "type": { @@ -57721,7 +57822,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L479" } ], "signatures": [ @@ -57744,7 +57845,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L479" } ], "parameters": [ @@ -57831,19 +57932,19 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L373" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L377" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 385, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L385" } ], "signatures": [ @@ -57858,7 +57959,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L373" } ], "typeParameters": [ @@ -57956,7 +58057,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L377" } ], "typeParameters": [ @@ -58056,7 +58157,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L493" } ], "signatures": [ @@ -58100,7 +58201,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L493" } ], "type": { @@ -58127,7 +58228,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L530" } ], "signatures": [ @@ -58180,7 +58281,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L530" } ], "type": { @@ -58228,7 +58329,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 513, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L513" } ], "signatures": [ @@ -58281,7 +58382,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 513, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L513" } ], "parameters": [ @@ -58350,7 +58451,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 432, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L432" } ], "signatures": [ @@ -58373,7 +58474,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 432, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L432" } ], "typeParameters": [ @@ -58599,7 +58700,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 446, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L446" } ], "type": { @@ -58649,7 +58750,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 445, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L445" } ], "type": { @@ -58694,7 +58795,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 444, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L444" } ], "type": { @@ -58714,7 +58815,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 443, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L443" } ] } @@ -58820,7 +58921,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L397" } ], "signatures": [ @@ -58843,7 +58944,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L397" } ], "typeParameters": [ @@ -59004,7 +59105,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 37, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L37" } ], "typeParameters": [ @@ -59084,7 +59185,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ], "type": { @@ -59104,7 +59205,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 44, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L44" } ] } @@ -59574,7 +59675,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ], "type": { @@ -59594,7 +59695,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 59, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L59" } ] } @@ -59675,7 +59776,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -59698,7 +59799,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ], "type": { @@ -59718,7 +59819,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -59736,7 +59837,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 62, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L62" } ] } @@ -59776,7 +59877,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ], "type": { @@ -59796,7 +59897,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 65, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L65" } ] } @@ -59832,7 +59933,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ], "type": { @@ -59852,7 +59953,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 66, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ] } @@ -74383,7 +74484,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 180, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L180" } ], "typeParameters": [ @@ -82411,7 +82512,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 168, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L168" } ], "typeParameters": [ @@ -82459,7 +82560,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 168, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L168" } ], "type": { @@ -82479,7 +82580,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 168, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L168" } ] } @@ -82530,7 +82631,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 169, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L169" } ], "type": { @@ -82559,7 +82660,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 167, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L167" } ], "typeParameters": [ @@ -89684,7 +89785,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L28" } ], "typeParameters": [ @@ -89734,7 +89835,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 161, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L161" } ], "type": { @@ -89750,7 +89851,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 161, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L161" } ], "signatures": [ @@ -89802,7 +89903,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L61" } ], "type": { @@ -89835,7 +89936,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 65, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L65" } ], "type": { @@ -89864,7 +89965,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L115" } ], "type": { @@ -89917,7 +90018,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "type": { @@ -89940,7 +90041,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "signatures": [ @@ -89986,7 +90087,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "indexSignatures": [ @@ -90001,7 +90102,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 95, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L95" } ], "parameters": [ @@ -90060,7 +90161,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 133, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L133" } ], "type": { @@ -90101,7 +90202,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 111, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L111" } ], "type": { @@ -90143,7 +90244,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L121" } ], "type": { @@ -90184,7 +90285,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 73, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L73" } ], "type": { @@ -90213,7 +90314,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L99" } ], "type": { @@ -90254,7 +90355,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 69, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L69" } ], "type": { @@ -90283,7 +90384,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L126" } ], "type": { @@ -90325,7 +90426,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 107, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L107" } ], "type": { @@ -90359,7 +90460,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 61, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L61" } ] } @@ -90394,7 +90495,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L32" } ], "type": { @@ -90419,7 +90520,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L33" } ], "type": { @@ -90463,7 +90564,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L45" } ], "type": { @@ -90504,7 +90605,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 58, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L58" } ], "type": { @@ -90524,7 +90625,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L32" } ] } @@ -90543,7 +90644,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L140" } ], "type": { @@ -90584,7 +90685,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 144, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L144" } ], "type": { @@ -90618,7 +90719,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 148, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L148" } ], "type": { @@ -90653,7 +90754,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 140, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L140" } ] } @@ -90680,7 +90781,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L138" } ], "type": { @@ -90703,7 +90804,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L139" } ], "type": { @@ -90728,7 +90829,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/lib/types.ts#L28" } ] } @@ -92434,7 +92535,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 46, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L46" } ], "signatures": [ @@ -92449,7 +92550,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 46, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L46" } ], "typeParameters": [ @@ -92497,7 +92598,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 50, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L50" } ], "type": { @@ -92517,7 +92618,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 50, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L50" } ] } @@ -93732,7 +93833,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/9ac8a92bebd3a550906e5d00a27c7d4888899eab/packages/core/supabase-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/2f11f49ffbfe0b4a9ecd3a550c67916e05f10745/packages/core/supabase-js/src/index.ts#L1" } ] } diff --git a/apps/studio/components/grid/SupabaseGrid.utils.ts b/apps/studio/components/grid/SupabaseGrid.utils.ts index f150c99d8bdfa..1f4200f72fd34 100644 --- a/apps/studio/components/grid/SupabaseGrid.utils.ts +++ b/apps/studio/components/grid/SupabaseGrid.utils.ts @@ -3,16 +3,24 @@ import { compact } from 'lodash' import { useSearchParams } from 'next/navigation' import { parseAsNativeArrayOf, parseAsString, useQueryStates } from 'nuqs' import { useEffect, useMemo } from 'react' -import { CalculatedColumn, CellKeyboardEvent } from 'react-data-grid' +import { + CalculatedColumn, + CellKeyboardEvent, + CellKeyDownArgs, + RowsChangeData, +} from 'react-data-grid' import { copyToClipboard } from 'ui' import { FilterOperatorOptions } from './components/header/filter/Filter.constants' import { STORAGE_KEY_PREFIX } from './constants' -import type { Sort, SupaColumn, SupaTable } from './types' +import type { Sort, SupaColumn, SupaRow, SupaTable } from './types' import { formatClipboardValue } from './utils/common' +import { isBoolColumn } from './utils/types' import type { Filter, SavedState } from '@/components/grid/types' import { Entity, isTableLike } from '@/data/table-editor/table-editor-types' import { BASE_PATH } from '@/lib/constants' +import { eventMatchesAnyShortcut } from '@/state/shortcuts/matchEvent' +import { tableEditorRegistry } from '@/state/shortcuts/registry/table-editor' export function formatSortURLParams(tableName: string, sort?: string[]): Sort[] { if (Array.isArray(sort)) { @@ -264,18 +272,51 @@ export function useSyncTableEditorStateFromLocalStorageWithUrl({ }, [urlParams, table, projectRef]) } -export const handleCopyCell = ( - { - mode, - column, - row, - }: { mode: 'SELECT' | 'EDIT'; column: CalculatedColumn; row: any }, - event: CellKeyboardEvent +export const handleCellKeyDown = ( + args: CellKeyDownArgs, + event: CellKeyboardEvent, + context?: { + rows: TRow[] + columns: SupaColumn[] + onRowsChange: (rows: TRow[], data: RowsChangeData) => void + } ) => { - if (mode === 'SELECT' && event.code === 'KeyC' && (event.metaKey || event.ctrlKey)) { - const colKey = column.key - const cellValue = row[colKey] ?? '' + const { mode, column, row, rowIdx } = args + if (mode !== 'SELECT') return + + if (event.code === 'KeyC' && (event.metaKey || event.ctrlKey)) { + const cellValue = row[column.key] ?? '' const value = formatClipboardValue(cellValue) copyToClipboard(value) } + // Let registered shortcuts win over rdg's "type a key to enter edit mode" default. + if (eventMatchesAnyShortcut(event.nativeEvent, tableEditorRegistry)) { + event.preventGridDefault() + return + } + + // Toggle boolean cells with T/F when no modifier keys are pressed. + if (context === undefined) return + + const key = event.key.toLowerCase() + if (event.altKey || event.ctrlKey || event.metaKey || (key !== 't' && key !== 'f')) return + + const supaColumn = context.columns.find((c) => c.name === column.key) + if ( + supaColumn === undefined || + !isBoolColumn(supaColumn.dataType) || + column.renderEditCell == null + ) { + return + } + + event.preventDefault() + event.preventGridDefault() + + const nextValue = key === 't' + if (row[column.key] === nextValue) return + + const updatedRows = [...context.rows] + updatedRows[rowIdx] = { ...row, [column.key]: nextValue } + context.onRowsChange(updatedRows, { indexes: [rowIdx], column }) } diff --git a/apps/studio/components/grid/components/common/Shortcuts.tsx b/apps/studio/components/grid/components/common/Shortcuts.tsx index 8e1f7dca488aa..99b3a2939a4cf 100644 --- a/apps/studio/components/grid/components/common/Shortcuts.tsx +++ b/apps/studio/components/grid/components/common/Shortcuts.tsx @@ -1,10 +1,15 @@ -import { RefObject } from 'react' +import { RefObject, useContext } from 'react' import type { DataGridHandle } from 'react-data-grid' +import { useTableFilter } from '@/components/grid/hooks/useTableFilter' +import { useTableSort } from '@/components/grid/hooks/useTableSort' import { SupaRow } from '@/components/grid/types' import { SHORTCUT_IDS } from '@/state/shortcuts/registry' import { useShortcut } from '@/state/shortcuts/useShortcut' -import { useTableEditorTableStateSnapshot } from '@/state/table-editor-table' +import { + TableEditorTableStateContext, + useTableEditorTableStateSnapshot, +} from '@/state/table-editor-table' type ShortcutsProps = { gridRef: RefObject @@ -13,6 +18,19 @@ type ShortcutsProps = { export function Shortcuts({ gridRef, rows }: ShortcutsProps) { const snap = useTableEditorTableStateSnapshot() + const state = useContext(TableEditorTableStateContext) + const canStartNavigation = !snap.selectedCellPosition && rows.length > 0 + + const { filters, clearFilters } = useTableFilter() + const { sorts, onApplySorts } = useTableSort() + + const startGridNavigation = () => { + const frozenColumns = snap.gridColumns.filter((x) => x.frozen) + gridRef.current?.selectCell({ + idx: frozenColumns.length, + rowIdx: 0, + }) + } useShortcut(SHORTCUT_IDS.TABLE_EDITOR_JUMP_FIRST_ROW, () => { if (snap.selectedCellPosition) { @@ -51,5 +69,73 @@ export function Shortcuts({ gridRef, rows }: ShortcutsProps) { }) }) + useShortcut( + SHORTCUT_IDS.TABLE_EDITOR_TOGGLE_ROW_SELECTION, + () => { + const rowIdx = state.selectedCellPosition?.rowIdx + if (rowIdx === undefined) return + + const row = rows[rowIdx] + if (!row) return + + const next = new Set(state.selectedRows) + if (next.has(row.idx)) next.delete(row.idx) + else next.add(row.idx) + + state.setSelectedRows(next) + }, + { + enabled: !!snap.selectedCellPosition, + } + ) + + useShortcut(SHORTCUT_IDS.TABLE_EDITOR_START_NAVIGATION_DOWN, startGridNavigation, { + enabled: canStartNavigation, + }) + + useShortcut(SHORTCUT_IDS.TABLE_EDITOR_START_NAVIGATION_UP, startGridNavigation, { + enabled: canStartNavigation, + }) + + useShortcut( + SHORTCUT_IDS.TABLE_EDITOR_EXIT_SELECTION, + () => { + snap.setSelectedCellPosition(null) + ;(document.activeElement as HTMLElement | null)?.blur() + }, + { + enabled: !!snap.selectedCellPosition, + } + ) + + useShortcut( + SHORTCUT_IDS.TABLE_EDITOR_FOCUS_FILTERS, + () => { + const input = document.querySelector( + '[data-testid="filter-bar-freeform-input"]' + ) + input?.focus() + }, + { + registerInCommandMenu: true, + } + ) + + useShortcut( + SHORTCUT_IDS.TABLE_EDITOR_CLEAR_FILTERS, + () => { + clearFilters() + }, + { + registerInCommandMenu: true, + enabled: filters.length > 0, + } + ) + + useShortcut(SHORTCUT_IDS.TABLE_EDITOR_CLEAR_SORT, () => onApplySorts([]), { + registerInCommandMenu: true, + enabled: sorts.length > 0, + }) + return null } diff --git a/apps/studio/components/grid/components/grid/Grid.tsx b/apps/studio/components/grid/components/grid/Grid.tsx index 5b57e2ba9b9b4..4377e34d5ef6e 100644 --- a/apps/studio/components/grid/components/grid/Grid.tsx +++ b/apps/studio/components/grid/components/grid/Grid.tsx @@ -14,7 +14,7 @@ import { useOnRowsChange } from './Grid.utils' import { GridError } from './GridError' import { RowContextMenuProvider, RowRenderer } from './RowRenderer' import { useTableFilter } from '@/components/grid/hooks/useTableFilter' -import { handleCopyCell } from '@/components/grid/SupabaseGrid.utils' +import { handleCellKeyDown } from '@/components/grid/SupabaseGrid.utils' import { formatForeignKeys } from '@/components/interfaces/TableGridEditor/SidePanelEditor/ForeignKeySelector/ForeignKeySelector.utils' import { useForeignKeyConstraintsQuery } from '@/data/database/foreign-key-constraints-query' import { ENTITY_TYPE } from '@/data/entity-types/entity-type-constants' @@ -362,7 +362,13 @@ export const Grid = memo( onRowDoubleClick(props.row, { name: props.column.name }) } }} - onCellKeyDown={handleCopyCell} + onCellKeyDown={(args, event) => + handleCellKeyDown(args, event, { + rows: rows ?? [], + columns: snap.table.columns, + onRowsChange, + }) + } /> {/* The DragOverlay is necessary to avoid styling issues while dragging a column */} diff --git a/apps/studio/components/grid/components/grid/SelectColumn.tsx b/apps/studio/components/grid/components/grid/SelectColumn.tsx index 8596cc65772d6..77ca3527b95bd 100644 --- a/apps/studio/components/grid/components/grid/SelectColumn.tsx +++ b/apps/studio/components/grid/components/grid/SelectColumn.tsx @@ -12,6 +12,9 @@ import { import { SELECT_COLUMN_KEY } from '../../constants' import type { SupaRow } from '../../types' import { ButtonTooltip } from '@/components/ui/ButtonTooltip' +import { Shortcut } from '@/components/ui/Shortcut' +import { ShortcutTooltip } from '@/components/ui/ShortcutTooltip' +import { SHORTCUT_IDS } from '@/state/shortcuts/registry' import { useTableEditorStateSnapshot } from '@/state/table-editor' import { useTableEditorTableStateSnapshot } from '@/state/table-editor-table' @@ -125,17 +128,23 @@ function SelectCellFormatter({ return (
- + + + {row && ( - + onChange(!value, false)} + options={{ + registerInCommandMenu: true, + }} + > + +
) } diff --git a/apps/studio/components/grid/components/header/Header.tsx b/apps/studio/components/grid/components/header/Header.tsx index 9929ac61f8ef3..c5cfec42e8ca5 100644 --- a/apps/studio/components/grid/components/header/Header.tsx +++ b/apps/studio/components/grid/components/header/Header.tsx @@ -30,6 +30,8 @@ import { useExportAllRowsAsSql, } from '@/components/layouts/TableEditorLayout/ExportAllRows' import { ButtonTooltip } from '@/components/ui/ButtonTooltip' +import { Shortcut } from '@/components/ui/Shortcut' +import { ShortcutBadge } from '@/components/ui/ShortcutBadge' import { useTableRowsCountQuery } from '@/data/table-rows/table-rows-count-query' import { useTableRowsQuery } from '@/data/table-rows/table-rows-query' import { useSendEventMutation } from '@/data/telemetry/send-event-mutation' @@ -41,6 +43,8 @@ import { useRoleImpersonationStateSnapshot, useSubscribeToImpersonatedRole, } from '@/state/role-impersonation-state' +import { SHORTCUT_IDS } from '@/state/shortcuts/registry' +import { useShortcut } from '@/state/shortcuts/useShortcut' import { useTableEditorStateSnapshot } from '@/state/table-editor' import { useTableEditorTableStateSnapshot } from '@/state/table-editor-table' @@ -103,6 +107,19 @@ const InsertButton = () => { const canAddNew = onAddRow !== undefined || onAddColumn !== undefined + useShortcut(SHORTCUT_IDS.TABLE_EDITOR_INSERT_ROW, () => onAddRow?.(), { + registerInCommandMenu: true, + enabled: onAddRow !== undefined && canAddNew && canCreateColumns, + }) + useShortcut(SHORTCUT_IDS.TABLE_EDITOR_INSERT_COLUMN, () => onAddColumn?.(), { + registerInCommandMenu: true, + enabled: onAddColumn !== undefined && canAddNew && canCreateColumns, + }) + useShortcut(SHORTCUT_IDS.TABLE_EDITOR_IMPORT_CSV, () => onImportData?.(), { + registerInCommandMenu: true, + enabled: onImportData !== undefined && canAddNew && canCreateColumns, + }) + if (!canAddNew || !canCreateColumns) return null return ( @@ -121,8 +138,8 @@ const InsertButton = () => { {[ ...(onAddRow !== undefined ? [ - -
+ +
{ ])} />
-
+

Insert row

Insert a new row into {snap.table.name}

+ , ] : []), ...(onAddColumn !== undefined ? [ - -
+ +
{ ])} />
-
+

Insert column

Insert a new column into {snap.table.name}

+ , ] : []), @@ -169,7 +190,7 @@ const InsertButton = () => { ? [ { onImportData() sendEvent({ @@ -182,7 +203,7 @@ const InsertButton = () => { }) }} > -
+
{ size={12} />
-
+

Import data from CSV

Insert new rows from a CSV

+ , ] : []), @@ -262,6 +287,14 @@ const RowHeader = ({ tableQueriesEnabled = true }: RowHeaderProps) => { snap.setSelectedRows(new Set(allRows.map((row) => row.idx)), true) } + const onToggleSelectAllInTable = () => { + if (snap.allRowsSelected) { + snap.setSelectedRows(new Set(), false) + } else { + onSelectAllRows() + } + } + const onRowsDelete = () => { const rowIdxs = Array.from(snap.selectedRows) as number[] const rows = allRows.filter((x) => rowIdxs.includes(x.idx)) @@ -386,28 +419,37 @@ const RowHeader = ({ tableQueriesEnabled = true }: RowHeaderProps) => { <>
{snap.editable && ( - } - onClick={onRowsDelete} - disabled={snap.allRowsSelected && isImpersonatingRole} - tooltip={{ - content: { - side: 'bottom', - text: - snap.allRowsSelected && isImpersonatingRole - ? 'Table truncation is not supported when impersonating a role' - : undefined, - }, + - {snap.allRowsSelected - ? `Delete all rows in table` - : snap.selectedRows.size > 1 - ? `Delete ${snap.selectedRows.size} rows` - : `Delete ${snap.selectedRows.size} row`} - + } + onClick={onRowsDelete} + disabled={snap.allRowsSelected && isImpersonatingRole} + tooltip={{ + content: { + side: 'bottom', + text: + snap.allRowsSelected && isImpersonatingRole + ? 'Table truncation is not supported when impersonating a role' + : undefined, + }, + }} + > + {snap.allRowsSelected + ? `Delete all rows in table` + : snap.selectedRows.size > 1 + ? `Delete ${snap.selectedRows.size} rows` + : `Delete ${snap.selectedRows.size} row`} + + )} {!snap.allRowsSelected ? ( @@ -473,14 +515,20 @@ const RowHeader = ({ tableQueriesEnabled = true }: RowHeaderProps) => { - {!snap.allRowsSelected && totalRows > allRows.length && ( + {snap.selectedRows.size > 0 && totalRows > allRows.length && ( <>
- + + + )}
diff --git a/apps/studio/components/grid/components/header/RefreshButton.tsx b/apps/studio/components/grid/components/header/RefreshButton.tsx index 48860aa1a800b..cbfbe5c56b61f 100644 --- a/apps/studio/components/grid/components/header/RefreshButton.tsx +++ b/apps/studio/components/grid/components/header/RefreshButton.tsx @@ -1,10 +1,12 @@ import { useQueryClient } from '@tanstack/react-query' import { useParams } from 'common' import { RefreshCw } from 'lucide-react' +import { Button } from 'ui' import { useTableIndexAdvisor } from '@/components/grid/context/TableIndexAdvisorContext' -import { ButtonTooltip } from '@/components/ui/ButtonTooltip' +import { Shortcut } from '@/components/ui/Shortcut' import { tableRowKeys } from '@/data/table-rows/keys' +import { SHORTCUT_IDS } from '@/state/shortcuts/registry' export type RefreshButtonProps = { tableId?: number @@ -23,18 +25,19 @@ export const RefreshButton = ({ tableId, isRefetching }: RefreshButtonProps) => } return ( - } - onClick={() => onClick()} - className="w-7 h-7 p-0" - tooltip={{ - content: { - side: 'bottom', - text: 'Refresh table data', - }, - }} - /> + +
) : paymentMethods?.data && paymentMethods?.data.length > 0 && !setupNewPaymentMethod ? ( - - {paymentMethods?.data.map((method: any) => { - const label = `•••• •••• •••• ${method.card.last4}` - return ( - { - return ( - Credit Card Brand - ) - }} - > -
{label}
-
- ) - })} -
{ - setSetupNewPaymentMethod(true) + { + if (value === 'new') { + setSetupNewPaymentMethod(true) + return + } + onSelectPaymentMethod(value) }} > - -

- Add new payment method -

-
-
+ + + + + {paymentMethods?.data.map((method) => { + const label = `•••• •••• •••• ${method.card?.last4}` + return ( + +
+ Credit Card Brand + {label} +
+
+ ) + })} + +
+ +

+ Add new payment method +

+
+
+
+ + ) : null} {stripePromise && setupIntent && customerProfile && ( diff --git a/apps/studio/components/interfaces/SQLEditor/UtilityPanel/Results.tsx b/apps/studio/components/interfaces/SQLEditor/UtilityPanel/Results.tsx index 490de8e29718b..5eeed6ff05cfd 100644 --- a/apps/studio/components/interfaces/SQLEditor/UtilityPanel/Results.tsx +++ b/apps/studio/components/interfaces/SQLEditor/UtilityPanel/Results.tsx @@ -12,7 +12,7 @@ import { import { CellDetailPanel } from './CellDetailPanel' import { formatCellValue, formatClipboardValue } from './Results.utils' -import { handleCopyCell } from '@/components/grid/SupabaseGrid.utils' +import { handleCellKeyDown } from '@/components/grid/SupabaseGrid.utils' export const Results = ({ rows }: { rows: readonly any[] }) => { const [expandCell, setExpandCell] = useState(false) @@ -137,7 +137,7 @@ export const Results = ({ rows }: { rows: readonly any[] }) => { className="grow min-h-0 border-t-0" rowClass={() => '[&>.rdg-cell]:items-center'} onSelectedCellChange={setCellPosition} - onCellKeyDown={handleCopyCell} + onCellKeyDown={handleCellKeyDown} /> { const organizations = (allOrganizations || []).filter((it) => it.id !== projectOrgId) - const [selectedOrg, setSelectedOrg] = useState() + const [selectedOrg, setSelectedOrg] = useState() const { mutate: transferProject, @@ -185,27 +197,30 @@ export const TransferProjectButton = () => { You do not have any organizations you can transfer your project to.
) : ( - setSelectedOrg(slug)} - placeholder="Select Organization" + label="Select Target Organization" + className="gap-[2px]" + size="tiny" > - - Select Organization - - {organizations.map((x: any) => ( - } - > - {x.name} - - ))} - + setSelectedOrg(slug)} + value={selectedOrg} + > + + + + + {organizations.map((x) => ( + + {x.name} + + ))} + + + )}
)} diff --git a/apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/ForeignKeySelector/ForeignKeySelector.tsx b/apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/ForeignKeySelector/ForeignKeySelector.tsx index ada532a66bcab..8840bbb0b7afc 100644 --- a/apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/ForeignKeySelector/ForeignKeySelector.tsx +++ b/apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/ForeignKeySelector/ForeignKeySelector.tsx @@ -1,16 +1,21 @@ import { FOREIGN_KEY_CASCADE_ACTION } from '@supabase/pg-meta' import type { PostgresTable } from '@supabase/postgres-meta' import { sortBy } from 'lodash' -import { ArrowRight, Database, HelpCircle, Loader2, Table, X } from 'lucide-react' +import { ArrowRight, HelpCircle, Loader2, X } from 'lucide-react' import { Fragment, useEffect, useState } from 'react' import { Alert_Shadcn_, AlertDescription_Shadcn_, AlertTitle_Shadcn_, Button, - Listbox, + Select_Shadcn_, + SelectContent_Shadcn_, + SelectItem_Shadcn_, + SelectTrigger_Shadcn_, + SelectValue_Shadcn_, SidePanel, } from 'ui' +import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout' import { ActionBar } from '../ActionBar' import { NUMERICAL_TYPES, TEXT_TYPES } from '../SidePanelEditor.constants' @@ -24,7 +29,6 @@ import { type ForeignKeyDirtyState, } from './ForeignKeySelector.utils' import { DiscardChangesConfirmationDialog } from '@/components/ui-patterns/Dialogs/DiscardChangesConfirmationDialog' -import { DocsButton } from '@/components/ui/DocsButton' import InformationBox from '@/components/ui/InformationBox' import { useSchemasQuery } from '@/data/database/schemas-query' import { useTableQuery } from '@/data/tables/table-retrieve-query' @@ -32,7 +36,6 @@ import { useTablesQuery } from '@/data/tables/tables-query' import { useQuerySchemaState } from '@/hooks/misc/useSchemaQueryState' import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject' import { useConfirmOnClose } from '@/hooks/ui/useConfirmOnClose' -import { DOCS_URL } from '@/lib/constants' import { uuidv4 } from '@/lib/helpers' const EMPTY_STATE: ForeignKey = { @@ -258,61 +261,64 @@ export const ForeignKeySelector = ({ url="https://www.postgresql.org/docs/current/tutorial-fk.html" urlLabel="Postgres Foreign Key Documentation" /> - - updateSelectedSchema(value)} + className="gap-[2px]" + size="tiny" > - {sortedSchemas.map((schema) => { - return ( - } - > -
- {/* For aria searching to target the schema name instead of schema */} - {schema.name} - {schema.name} -
-
- ) - })} -
- - updateSelectedSchema(value)} + > + + + + + {sortedSchemas.map((schema) => ( + + {schema.name} + + ))} + + + + updateSelectedTable(Number(value))} - disabled={isLoadingSelectedTable} + className="gap-[2px]" + size="tiny" > - - --- - - {sortBy(tables, ['schema']).map((table) => { - return ( - } - > -
- {/* For aria searching to target the table name instead of schema */} - {table.name} - {table.schema} - {table.name} -
- - ) - })} - + updateSelectedTable(Number(value))} + disabled={isLoadingSelectedTable} + > + + + + + {sortBy(tables, ['schema']).map((table) => ( + +
+ {/* For aria searching to target the table name instead of schema */} + {table.name} + {table.schema} + {table.name} +
+
+ ))} +
+
+ {fk.schema && fk.table && ( <> @@ -331,10 +337,10 @@ export const ForeignKeySelector = ({ to reference to
-
+
{selectedSchema}.{table.name.length > 0 ? table.name : '[unnamed table]'}
-
+
{fk.schema}.{fk.table}
{fk.columns.length === 0 && ( @@ -347,73 +353,57 @@ export const ForeignKeySelector = ({ {fk.columns.map((_, idx) => (
- - updateSelectedColumn(idx, 'source', value) - } + onValueChange={(value) => updateSelectedColumn(idx, 'source', value)} > - 0 ? table.name : '[unnamed table]'}`} > - --- - - {(table?.columns ?? []) - .filter((x) => x.name.length !== 0) - .map((column) => ( - -
- {column.name} - - {column.format === '' ? '-' : column.format} - -
-
- ))} -
+ + + + {(table?.columns ?? []) + .filter((x) => x.name.length !== 0) + .map((column) => ( + +
+ {column.name} + + {column.format === '' ? '-' : column.format} + +
+
+ ))} +
+
- - updateSelectedColumn(idx, 'target', value) - } + onValueChange={(value) => updateSelectedColumn(idx, 'target', value)} > - - --- - - {(selectedTable?.columns ?? []).map((column) => ( - -
- {column.name} - {column.format} -
-
- ))} -
+ + + + {(selectedTable?.columns ?? []).map((column) => ( + +
+ {column.name} + + {column.format === '' ? '-' : column.format} + +
+
+ ))} +
+
{ columnId="timestamp" chartConfig={filteredChartConfig} /> - - - - - - -
- -
-
- -
+
+ + +
+ +
- + {selectedRowKey && ( -
+
{backToDashboardURL && isAccountPage && (
{ const [isSheetOpen, setIsSheetOpen] = useState(false) - const showFloatingMobileToolbar = useIsFloatingMobileToolbarEnabled() const { ref: projectRef, slug } = useParams() const { data: selectedOrganization } = useSelectedOrganizationQuery() const { isPending: isLoadingOrganizations } = useOrganizationsQuery() @@ -50,7 +48,7 @@ const MobileNavigationBar = ({ )} >
- {showFloatingMobileToolbar && backToDashboardURL && ( + {backToDashboardURL && (
- {!showFloatingMobileToolbar && ( - - - - )} {IS_PLATFORM && } {IS_PLATFORM ? : } {!hideMobileMenu && ( @@ -108,7 +87,7 @@ const MobileNavigationBar = ({ - {showFloatingMobileToolbar && } +
) } diff --git a/apps/studio/components/layouts/TableEditorLayout/TableEditorMenu.tsx b/apps/studio/components/layouts/TableEditorLayout/TableEditorMenu.tsx index 3a94d06a5a2cd..0505eb54d1926 100644 --- a/apps/studio/components/layouts/TableEditorLayout/TableEditorMenu.tsx +++ b/apps/studio/components/layouts/TableEditorLayout/TableEditorMenu.tsx @@ -1,7 +1,6 @@ import { PermissionAction } from '@supabase/shared-types/out/constants' import { keepPreviousData } from '@tanstack/react-query' import { useParams } from 'common' -import { useBreakpoint } from 'common/hooks/useBreakpoint' import { Filter, Plus } from 'lucide-react' import { useCallback, useEffect, useMemo, useState } from 'react' import { @@ -48,7 +47,6 @@ export const TableEditorMenu = () => { const id = _id ? Number(_id) : undefined const snap = useTableEditorStateSnapshot() const { selectedSchema, setSelectedSchema } = useQuerySchemaState() - const isMobile = useBreakpoint() const [searchText, setSearchText] = useState('') const [tableToExport, setTableToExport] = useState() @@ -201,7 +199,6 @@ export const TableEditorMenu = () => {
diff --git a/apps/studio/components/ui/DataTable/DataTableFilters/DataTableFilterControlsDrawer.tsx b/apps/studio/components/ui/DataTable/DataTableFilters/DataTableFilterControlsDrawer.tsx index f0c830b89fd4b..bbde340456830 100644 --- a/apps/studio/components/ui/DataTable/DataTableFilters/DataTableFilterControlsDrawer.tsx +++ b/apps/studio/components/ui/DataTable/DataTableFilters/DataTableFilterControlsDrawer.tsx @@ -35,9 +35,14 @@ export function DataTableFilterControlsDrawer() { - + + ) } diff --git a/apps/studio/components/ui/ShortcutBadge.tsx b/apps/studio/components/ui/ShortcutBadge.tsx new file mode 100644 index 0000000000000..66ad90c3e6180 --- /dev/null +++ b/apps/studio/components/ui/ShortcutBadge.tsx @@ -0,0 +1,45 @@ +import { Fragment } from 'react' +import { cn, KeyboardShortcut } from 'ui' + +import { hotkeyToKeys } from '@/state/shortcuts/formatShortcut' +import { SHORTCUT_DEFINITIONS, type ShortcutId } from '@/state/shortcuts/registry' + +interface ShortcutBadgeProps { + shortcutId: ShortcutId + className?: string + /** `'inline'` (default) is flat text; `'pill'` is a boxed badge. */ + variant?: 'inline' | 'pill' +} + +/** + * Inline display of the keybind for a registered shortcut. Useful inside + * menu items, buttons, or rows where the label already exists elsewhere and + * you just want to surface the keybind itself (no tooltip / hover). + * + * For multi-step sequences (e.g. `['G', 'T']`), each step is separated by the + * word "then". + * + * @example + * + *

Copy as CSV

+ * + *
+ */ +export const ShortcutBadge = ({ + shortcutId, + className, + variant = 'inline', +}: ShortcutBadgeProps) => { + const def = SHORTCUT_DEFINITIONS[shortcutId] + + return ( + + {def.sequence.map((step, i) => ( + + {i > 0 && then} + + + ))} + + ) +} diff --git a/apps/studio/pages/integrations/vercel/[slug]/deploy-button/new-project.tsx b/apps/studio/pages/integrations/vercel/[slug]/deploy-button/new-project.tsx index 9fafeb0d27c81..f24bbb298e130 100644 --- a/apps/studio/pages/integrations/vercel/[slug]/deploy-button/new-project.tsx +++ b/apps/studio/pages/integrations/vercel/[slug]/deploy-button/new-project.tsx @@ -3,7 +3,18 @@ import { useParams } from 'common' import { ChangeEvent, useEffect, useState } from 'react' import { AWS_REGIONS } from 'shared-data' import { toast } from 'sonner' -import { Alert, Button, Checkbox, Input, Listbox } from 'ui' +import { + Alert, + Button, + Checkbox, + Input, + Select_Shadcn_, + SelectContent_Shadcn_, + SelectItem_Shadcn_, + SelectTrigger_Shadcn_, + SelectValue_Shadcn_, +} from 'ui' +import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout' import { isVercelUrl } from '@/components/interfaces/Integrations/Vercel/VercelIntegration.utils' import { Markdown } from '@/components/interfaces/Markdown' @@ -65,7 +76,7 @@ const CreateProject = () => { const [passwordStrengthMessage, setPasswordStrengthMessage] = useState('') const [passwordStrengthScore, setPasswordStrengthScore] = useState(-1) const [shouldRunMigrations, setShouldRunMigrations] = useState(true) - const [dbRegion, setDbRegion] = useState(PROVIDERS.AWS.default_region.displayName) + const [dbRegion, setDbRegion] = useState(PROVIDERS.AWS.default_region.displayName) const track = useTrack() const snapshot = useIntegrationInstallationSnapshot() @@ -276,33 +287,38 @@ const CreateProject = () => {
- setDbRegion(region)} - descriptionText="Select a region close to your users for the best performance." + description="Select a region close to your users for the best performance." + className="gap-[2px]" + size="tiny" > - {Object.keys(AWS_REGIONS).map((option: string, i) => { - const label = Object.values(AWS_REGIONS)[i].displayName - return ( - ( - region icon - )} - > - {label} - - ) - })} - + setDbRegion(region)}> + + + + + {Object.keys(AWS_REGIONS).map((option: string, i) => { + const label = Object.values(AWS_REGIONS)[i].displayName + return ( + +
+ region icon + {label} +
+
+ ) + })} +
+
+
diff --git a/apps/studio/public/img/previews/floating-toolbar-preview.png b/apps/studio/public/img/previews/floating-toolbar-preview.png deleted file mode 100644 index c2563010b338a..0000000000000 Binary files a/apps/studio/public/img/previews/floating-toolbar-preview.png and /dev/null differ diff --git a/apps/studio/state/shortcuts/matchEvent.test.ts b/apps/studio/state/shortcuts/matchEvent.test.ts new file mode 100644 index 0000000000000..5a3f0b85a5b7b --- /dev/null +++ b/apps/studio/state/shortcuts/matchEvent.test.ts @@ -0,0 +1,121 @@ +import { getSequenceManager } from '@tanstack/react-hotkeys' +import { beforeEach, describe, expect, it, vi } from 'vitest' + +import { eventMatchesAnyShortcut } from './matchEvent' +import type { RegistryDefinations } from './types' + +vi.mock('@tanstack/react-hotkeys', async () => { + const actual = + await vi.importActual('@tanstack/react-hotkeys') + return { + ...actual, + getSequenceManager: vi.fn(), + } +}) + +type FakeRegistration = { + options: { enabled?: boolean } + sequence: string[] +} + +/** Swap the SequenceManager's registrations for the ones we care about. */ +function withRegistrations(registrations: FakeRegistration[]) { + const state = new Map(registrations.map((r, i) => [String(i), r])) + vi.mocked(getSequenceManager).mockReturnValue({ + registrations: { state }, + } as unknown as ReturnType) +} + +const shiftX = new KeyboardEvent('keydown', { + key: 'X', + code: 'KeyX', + shiftKey: true, +}) + +const arrowDown = new KeyboardEvent('keydown', { + key: 'ArrowDown', + code: 'ArrowDown', +}) + +const g = new KeyboardEvent('keydown', { + key: 'g', + code: 'KeyG', +}) + +const shiftK = new KeyboardEvent('keydown', { + key: 'K', + code: 'KeyK', + shiftKey: true, +}) + +const registry: RegistryDefinations = { + 'table.shift-x': { + id: 'table.shift-x', + label: 'Toggle row', + sequence: ['Shift+X'], + }, + 'table.arrow-down': { + id: 'table.arrow-down', + label: 'Start navigation (down)', + sequence: ['ArrowDown'], + }, + 'table.chord': { + id: 'table.chord', + label: 'Chord', + sequence: ['G', 'T'], + }, +} + +describe('eventMatchesAnyShortcut', () => { + beforeEach(() => { + vi.clearAllMocks() + }) + + it('returns false when there are no active registrations', () => { + withRegistrations([]) + expect(eventMatchesAnyShortcut(shiftX, registry)).toBe(false) + }) + + it('returns true when an active, enabled shortcut in scope matches', () => { + withRegistrations([{ options: {}, sequence: ['Shift+X'] }]) + expect(eventMatchesAnyShortcut(shiftX, registry)).toBe(true) + }) + + it('returns false when the matching shortcut is disabled', () => { + withRegistrations([{ options: { enabled: false }, sequence: ['ArrowDown'] }]) + expect(eventMatchesAnyShortcut(arrowDown, registry)).toBe(false) + }) + + it('treats enabled: undefined and enabled: true as enabled', () => { + withRegistrations([ + { options: {}, sequence: ['Shift+X'] }, + { options: { enabled: true }, sequence: ['ArrowDown'] }, + ]) + expect(eventMatchesAnyShortcut(arrowDown, registry)).toBe(true) + }) + + it('returns false when the matching registration is not in the target registry', () => { + // 'Shift+K' is registered and matches the event, but our scoped registry + // doesn't include it — so we should not claim a match. + withRegistrations([{ options: {}, sequence: ['Shift+K'] }]) + expect(eventMatchesAnyShortcut(shiftK, registry)).toBe(false) + }) + + it('matches any individual step of a chord sequence', () => { + withRegistrations([{ options: {}, sequence: ['G', 'T'] }]) + expect(eventMatchesAnyShortcut(g, registry)).toBe(true) + }) + + it('returns true if any enabled duplicate matches, even when a disabled one is also present', () => { + withRegistrations([ + { options: { enabled: false }, sequence: ['Shift+X'] }, + { options: {}, sequence: ['Shift+X'] }, + ]) + expect(eventMatchesAnyShortcut(shiftX, registry)).toBe(true) + }) + + it('returns false when no active sequence matches the event', () => { + withRegistrations([{ options: {}, sequence: ['Shift+X'] }]) + expect(eventMatchesAnyShortcut(arrowDown, registry)).toBe(false) + }) +}) diff --git a/apps/studio/state/shortcuts/matchEvent.ts b/apps/studio/state/shortcuts/matchEvent.ts new file mode 100644 index 0000000000000..cf25515fcad85 --- /dev/null +++ b/apps/studio/state/shortcuts/matchEvent.ts @@ -0,0 +1,38 @@ +import { getSequenceManager, matchesKeyboardEvent } from '@tanstack/react-hotkeys' + +import { SHORTCUT_DEFINITIONS } from './registry' +import type { RegistryDefinations } from './types' + +/** + * Returns true if the given keyboard event matches a shortcut that is both: + * + * 1. **In the target registry** (defaults to every known shortcut, but callers + * can pass a subset like `tableEditorRegistry` to scope the check) + * 2. **Currently active and enabled** — i.e. a `useShortcut` is mounted for it + * AND its `enabled` option is not `false` + * + * Chord sequences (e.g. `['G', 'T']`) match on any individual step, so + * pressing `G` counts as a match while the chord is in flight. + * + * Respecting the live `enabled` state matters: if a shortcut is registered but + * gated off (e.g. `enabled: !!snap.selectedCellPosition`), we must NOT suppress + * the default behavior on its behalf, because the shortcut won't actually fire. + */ + +export function eventMatchesAnyShortcut( + event: KeyboardEvent, + registry: RegistryDefinations = SHORTCUT_DEFINITIONS +): boolean { + const scopedSteps = new Set(Object.values(registry).flatMap((def) => def.sequence)) + const activeRegistrations = getSequenceManager().registrations.state.values() + + for (const view of activeRegistrations) { + if (view.options.enabled === false) continue + const matches = view.sequence.some( + (step) => scopedSteps.has(step) && matchesKeyboardEvent(event, step) + ) + if (matches) return true + } + + return false +} diff --git a/apps/studio/state/shortcuts/registry.ts b/apps/studio/state/shortcuts/registry.ts index 73f3b687a0d99..1c6e1c66e1f31 100644 --- a/apps/studio/state/shortcuts/registry.ts +++ b/apps/studio/state/shortcuts/registry.ts @@ -1,3 +1,4 @@ +import { TABLE_EDITOR_SHORTCUT_IDS, tableEditorRegistry } from './registry/table-editor' import { ShortcutDefinition } from './types' /** @@ -16,10 +17,6 @@ export const SHORTCUT_IDS = { RESULTS_COPY_JSON: 'results.copy-json', RESULTS_COPY_CSV: 'results.copy-csv', RESULTS_DOWNLOAD_CSV: 'results.download-csv', - TABLE_EDITOR_JUMP_FIRST_ROW: 'table-editor.jump-first-row', - TABLE_EDITOR_JUMP_LAST_ROW: 'table-editor.jump-last-row', - TABLE_EDITOR_JUMP_FIRST_COL: 'table-editor.jump-first-col', - TABLE_EDITOR_JUMP_LAST_COL: 'table-editor.jump-last-col', DATA_TABLE_TOGGLE_FILTERS: 'data-table.toggle-filters', DATA_TABLE_RESET_FILTERS: 'data-table.reset-filters', DATA_TABLE_RESET_COLUMNS: 'data-table.reset-columns', @@ -49,6 +46,9 @@ export const SHORTCUT_IDS = { NAV_ORG_BILLING: 'nav.org-billing', NAV_ORG_SETTINGS: 'nav.org-settings', SHORTCUTS_OPEN_REFERENCE: 'shortcuts.open-reference', + + // Table editor shortcuts + ...TABLE_EDITOR_SHORTCUT_IDS, } as const /** @@ -113,34 +113,6 @@ export const SHORTCUT_DEFINITIONS: Record = { label: 'Download results as CSV', sequence: ['Mod+Shift+D'], }, - [SHORTCUT_IDS.TABLE_EDITOR_JUMP_FIRST_ROW]: { - id: SHORTCUT_IDS.TABLE_EDITOR_JUMP_FIRST_ROW, - label: 'Jump to first row', - sequence: ['Mod+ArrowUp'], - showInSettings: false, - options: { ignoreInputs: true }, - }, - [SHORTCUT_IDS.TABLE_EDITOR_JUMP_LAST_ROW]: { - id: SHORTCUT_IDS.TABLE_EDITOR_JUMP_LAST_ROW, - label: 'Jump to last row', - sequence: ['Mod+ArrowDown'], - showInSettings: false, - options: { ignoreInputs: true }, - }, - [SHORTCUT_IDS.TABLE_EDITOR_JUMP_FIRST_COL]: { - id: SHORTCUT_IDS.TABLE_EDITOR_JUMP_FIRST_COL, - label: 'Jump to first column', - sequence: ['Mod+ArrowLeft'], - showInSettings: false, - options: { ignoreInputs: true }, - }, - [SHORTCUT_IDS.TABLE_EDITOR_JUMP_LAST_COL]: { - id: SHORTCUT_IDS.TABLE_EDITOR_JUMP_LAST_COL, - label: 'Jump to last column', - sequence: ['Mod+ArrowRight'], - showInSettings: false, - options: { ignoreInputs: true }, - }, [SHORTCUT_IDS.AI_ASSISTANT_CANCEL_EDIT]: { id: SHORTCUT_IDS.AI_ASSISTANT_CANCEL_EDIT, label: 'Cancel AI Assistant edit', @@ -322,4 +294,7 @@ export const SHORTCUT_DEFINITIONS: Record = { showInSettings: false, options: { ignoreInputs: true }, }, + + // Table editor shortcut registration + ...tableEditorRegistry, } diff --git a/apps/studio/state/shortcuts/registry/table-editor.ts b/apps/studio/state/shortcuts/registry/table-editor.ts new file mode 100644 index 0000000000000..374ef466c746f --- /dev/null +++ b/apps/studio/state/shortcuts/registry/table-editor.ts @@ -0,0 +1,154 @@ +import { RegistryDefinations } from '../types' + +export const TABLE_EDITOR_SHORTCUT_IDS = { + TABLE_EDITOR_JUMP_FIRST_ROW: 'table-editor.jump-first-row', + TABLE_EDITOR_JUMP_LAST_ROW: 'table-editor.jump-last-row', + TABLE_EDITOR_JUMP_FIRST_COL: 'table-editor.jump-first-col', + TABLE_EDITOR_JUMP_LAST_COL: 'table-editor.jump-last-col', + TABLE_EDITOR_TOGGLE_ROW_SELECTION: 'table-editor.toggle-row-selection', + TABLE_EDITOR_TOGGLE_ALL_ROW_SELECTION: 'table-editor.toggle-all-row-selection', + TABLE_EDITOR_SELECT_ALL_IN_TABLE: 'table-editor.select-all-in-table', + TABLE_EDITOR_DELETE_SELECTED_ROWS: 'table-editor.delete-selected-rows', + TABLE_EDITOR_START_NAVIGATION_DOWN: 'table-editor.start-navigation-down', + TABLE_EDITOR_START_NAVIGATION_UP: 'table-editor.start-navigation-up', + TABLE_EDITOR_EXIT_SELECTION: 'table-editor.exit-selection', + TABLE_EDITOR_INSERT_ROW: 'table-editor.insert-row', + TABLE_EDITOR_INSERT_COLUMN: 'table-editor.insert-column', + TABLE_EDITOR_IMPORT_CSV: 'table-editor.import-csv', + TABLE_EDITOR_FOCUS_FILTERS: 'table-editor.focus-filters', + TABLE_EDITOR_CLEAR_FILTERS: 'table-editor.clear-filters', + TABLE_EDITOR_CLEAR_SORT: 'table-editor.clear-sort', + TABLE_EDITOR_REFRESH: 'table-editor.refresh', +} + +export type TableEditorShortcutId = + (typeof TABLE_EDITOR_SHORTCUT_IDS)[keyof typeof TABLE_EDITOR_SHORTCUT_IDS] + +export const tableEditorRegistry: RegistryDefinations = { + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_JUMP_FIRST_ROW]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_JUMP_FIRST_ROW, + label: 'Jump to first row', + sequence: ['Mod+ArrowUp'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_JUMP_LAST_ROW]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_JUMP_LAST_ROW, + label: 'Jump to last row', + sequence: ['Mod+ArrowDown'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_JUMP_FIRST_COL]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_JUMP_FIRST_COL, + label: 'Jump to first column', + sequence: ['Mod+ArrowLeft'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_JUMP_LAST_COL]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_JUMP_LAST_COL, + label: 'Jump to last column', + sequence: ['Mod+ArrowRight'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_TOGGLE_ROW_SELECTION]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_TOGGLE_ROW_SELECTION, + label: 'Toggle selection on current row', + sequence: ['Shift+Space'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_TOGGLE_ALL_ROW_SELECTION]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_TOGGLE_ALL_ROW_SELECTION, + label: 'Toggle selection on all displayed rows', + sequence: ['Mod+A'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_SELECT_ALL_IN_TABLE]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_SELECT_ALL_IN_TABLE, + label: 'Toggle selection on all rows in table', + sequence: ['Mod+Shift+A'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_DELETE_SELECTED_ROWS]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_DELETE_SELECTED_ROWS, + label: 'Delete selected rows', + sequence: ['Mod+Backspace'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_START_NAVIGATION_DOWN]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_START_NAVIGATION_DOWN, + label: 'Start grid navigation (down)', + sequence: ['ArrowDown'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_START_NAVIGATION_UP]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_START_NAVIGATION_UP, + label: 'Start grid navigation (up)', + sequence: ['ArrowUp'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_EXIT_SELECTION]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_EXIT_SELECTION, + label: 'Exit grid selection', + sequence: ['Escape'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_INSERT_ROW]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_INSERT_ROW, + label: 'Insert row', + sequence: ['I', 'R'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_INSERT_COLUMN]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_INSERT_COLUMN, + label: 'Insert column', + sequence: ['I', 'C'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_IMPORT_CSV]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_IMPORT_CSV, + label: 'Import data from CSV', + sequence: ['I', 'U'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_FOCUS_FILTERS]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_FOCUS_FILTERS, + label: 'Focus filters', + sequence: ['Shift+F'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_CLEAR_FILTERS]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_CLEAR_FILTERS, + label: 'Clear filters', + sequence: ['F', 'C'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_CLEAR_SORT]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_CLEAR_SORT, + label: 'Clear sort', + sequence: ['S', 'C'], + showInSettings: false, + options: { ignoreInputs: true }, + }, + [TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_REFRESH]: { + id: TABLE_EDITOR_SHORTCUT_IDS.TABLE_EDITOR_REFRESH, + label: 'Refresh table', + sequence: ['Shift+R'], + showInSettings: false, + options: { ignoreInputs: true }, + }, +} diff --git a/apps/studio/state/shortcuts/types.ts b/apps/studio/state/shortcuts/types.ts index da5f950265975..9230415dff148 100644 --- a/apps/studio/state/shortcuts/types.ts +++ b/apps/studio/state/shortcuts/types.ts @@ -99,3 +99,5 @@ export interface ShortcutDefinition { */ showInSettings?: boolean } + +export type RegistryDefinations = Record diff --git a/apps/studio/state/shortcuts/useShortcut.test.tsx b/apps/studio/state/shortcuts/useShortcut.test.tsx index 9275dd10bf833..5ae39cba95dc2 100644 --- a/apps/studio/state/shortcuts/useShortcut.test.tsx +++ b/apps/studio/state/shortcuts/useShortcut.test.tsx @@ -4,13 +4,17 @@ import { beforeEach, describe, expect, it, vi } from 'vitest' import { SHORTCUT_DEFINITIONS, SHORTCUT_IDS } from './registry' import { useShortcut } from './useShortcut' -const { mockUseHotkeySequence, mockUseRegisterCommands, mockUseIsShortcutEnabled } = vi.hoisted( - () => ({ - mockUseHotkeySequence: vi.fn(), - mockUseRegisterCommands: vi.fn(), - mockUseIsShortcutEnabled: vi.fn(), - }) -) +const { + mockUseHotkeySequence, + mockUseRegisterCommands, + mockUseIsShortcutEnabled, + mockSetCommandMenuOpen, +} = vi.hoisted(() => ({ + mockUseHotkeySequence: vi.fn(), + mockUseRegisterCommands: vi.fn(), + mockUseIsShortcutEnabled: vi.fn(), + mockSetCommandMenuOpen: vi.fn(), +})) vi.mock('@tanstack/react-hotkeys', () => ({ useHotkeySequence: mockUseHotkeySequence, @@ -18,6 +22,7 @@ vi.mock('@tanstack/react-hotkeys', () => ({ vi.mock('ui-patterns/CommandMenu', () => ({ useRegisterCommands: mockUseRegisterCommands, + useSetCommandMenuOpen: () => mockSetCommandMenuOpen, })) vi.mock('./useIsShortcutEnabled', () => ({ @@ -204,6 +209,19 @@ describe('useShortcut', () => { expect(cb2).toHaveBeenCalledTimes(1) }) + it('command action closes the command menu when fired', () => { + const cb = vi.fn() + renderHook(() => + useShortcut(SHORTCUT_IDS.COMMAND_MENU_OPEN, cb, { registerInCommandMenu: true }) + ) + const action = mockUseRegisterCommands.mock.calls[0][1][0].action + + action() + + expect(mockSetCommandMenuOpen).toHaveBeenCalledWith(false) + expect(cb).toHaveBeenCalledTimes(1) + }) + it('command action identity is stable across renders', () => { const { rerender } = renderHook( ({ cb }: { cb: () => void }) => diff --git a/apps/studio/state/shortcuts/useShortcut.tsx b/apps/studio/state/shortcuts/useShortcut.tsx index d5aad4277988e..3ea2fa5e5e6fd 100644 --- a/apps/studio/state/shortcuts/useShortcut.tsx +++ b/apps/studio/state/shortcuts/useShortcut.tsx @@ -1,7 +1,7 @@ import { useHotkeySequence } from '@tanstack/react-hotkeys' import { Fragment, useCallback } from 'react' import { KeyboardShortcut } from 'ui' -import { useRegisterCommands } from 'ui-patterns/CommandMenu' +import { useRegisterCommands, useSetCommandMenuOpen } from 'ui-patterns/CommandMenu' import { SHORTCUT_DEFINITIONS, type ShortcutId } from './registry' import type { ShortcutOptions } from './types' @@ -75,7 +75,11 @@ export function useShortcut(id: ShortcutId, callback: () => void, options?: Shor const enabledInCommandMenu = enabled && (options?.registerInCommandMenu ?? false) const depsInCommandMenu = [enabled, def.label] const callbackRef = useLatest(callback) - const stableAction = useCallback(() => callbackRef.current(), [callbackRef]) + const setCommandMenuOpen = useSetCommandMenuOpen() + const stableAction = useCallback(() => { + setCommandMenuOpen(false) + callbackRef.current() + }, [callbackRef, setCommandMenuOpen]) useRegisterCommands( COMMAND_MENU_SECTIONS.SHORTCUTS, @@ -99,6 +103,7 @@ export function useShortcut(id: ShortcutId, callback: () => void, options?: Shor { enabled: enabledInCommandMenu, deps: depsInCommandMenu, + sectionMeta: { priority: 1 }, } ) } diff --git a/apps/studio/styles/grid.css b/apps/studio/styles/grid.css index adf65a4fd6b3b..b4592b6a3c5a0 100644 --- a/apps/studio/styles/grid.css +++ b/apps/studio/styles/grid.css @@ -36,6 +36,11 @@ box-shadow: inset 0 0 0 1px #24b47e; } +.rdg:not(:focus-within) .rdg-cell[aria-selected='true'] { + box-shadow: none; + outline: none; +} + /* Cell with unsaved changes - warning (amber) background/text color */ .rdg-cell.rdg-cell--dirty { background-color: hsl(var(--warning-300) / 0.75); diff --git a/apps/www/_blog/2025-07-14-jwt-signing-keys.mdx b/apps/www/_blog/2025-07-14-jwt-signing-keys.mdx index 9fe686af9269a..6d844aa951dba 100644 --- a/apps/www/_blog/2025-07-14-jwt-signing-keys.mdx +++ b/apps/www/_blog/2025-07-14-jwt-signing-keys.mdx @@ -17,7 +17,7 @@ launchweek: '15' Today we're announcing some long awaited changes in Supabase: - Support for [asymmetric JWTs with Supabase Auth](/docs/guides/auth/signing-keys). -- [New API keys](/docs/guides/api/api-keys) to help you transition to asymmetric JWTs and improve the security of your apps. +- [New API keys](/docs/guides/getting-started/api-keys) to help you transition to asymmetric JWTs and improve the security of your apps.